BZip2CompressorOutputStream.java

1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one
3
 * or more contributor license agreements.  See the NOTICE file
4
 * distributed with this work for additional information
5
 * regarding copyright ownership.  The ASF licenses this file
6
 * to you under the Apache License, Version 2.0 (the
7
 * "License"); you may not use this file except in compliance
8
 * with the License.  You may obtain a copy of the License at
9
 *
10
 * http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing,
13
 * software distributed under the License is distributed on an
14
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
 * KIND, either express or implied.  See the License for the
16
 * specific language governing permissions and limitations
17
 * under the License.
18
 */
19
package org.apache.commons.compress.compressors.bzip2;
20
21
import java.io.IOException;
22
import java.io.OutputStream;
23
24
import org.apache.commons.compress.compressors.CompressorOutputStream;
25
26
/**
27
 * An output stream that compresses into the BZip2 format (without the file
28
 * header chars) into another stream. TODO: Update to BZip2 1.0.1
29
 */
30
public class BZip2CompressorOutputStream extends CompressorOutputStream implements BZip2Constants {
31
    protected static final int SETMASK = (1 << 21);
32
    protected static final int CLEARMASK = (~SETMASK);
33
    protected static final int GREATER_ICOST = 15;
34
    protected static final int LESSER_ICOST = 0;
35
    protected static final int SMALL_THRESH = 20;
36
    protected static final int DEPTH_THRESH = 10;
37
38
    /*
39
      If you are ever unlucky/improbable enough
40
      to get a stack overflow whilst sorting,
41
      increase the following constant and try
42
      again.  In practice I have never seen the
43
      stack go above 27 elems, so the following
44
      limit seems very generous.
45
    */
46
    protected static final int QSORT_STACK_SIZE = 1000;
47
48
    private static void panic() {
49 1 1. panic : removed call to java/io/PrintStream::println → NO_COVERAGE
        System.out.println("panic");
50
        //throw new CError();
51
    }
52
53
    private void makeMaps() {
54
        int i;
55 6 1. makeMaps : Substituted 0 with 1 → SURVIVED
2. makeMaps : Removed assignment to member variable nInUse → SURVIVED
3. makeMaps : Substituted 0 with 1 → SURVIVED
4. makeMaps : Substituted 0 with 1 → SURVIVED
5. makeMaps : Substituted 0 with -1 → KILLED
6. makeMaps : Substituted 0 with -1 → KILLED
        nInUse = 0;
56 27 1. makeMaps : Substituted 0 with 1 → SURVIVED
2. makeMaps : negated conditional → SURVIVED
3. makeMaps : removed conditional - replaced comparison check with false → SURVIVED
4. makeMaps : Substituted 0 with 1 → SURVIVED
5. makeMaps : Substituted 256 with 1 → SURVIVED
6. makeMaps : Substituted 256 with 0 → SURVIVED
7. makeMaps : Substituted 256 with -1 → SURVIVED
8. makeMaps : Substituted 256 with -256 → SURVIVED
9. makeMaps : Substituted 0 with 1 → SURVIVED
10. makeMaps : Substituted 256 with 255 → SURVIVED
11. makeMaps : greater or equal to less than → SURVIVED
12. makeMaps : greater or equal to less or equal → SURVIVED
13. makeMaps : greater or equal to equal → SURVIVED
14. makeMaps : greater or equal to not equal → SURVIVED
15. makeMaps : Incremented (a++) integer local variable number 1 → SURVIVED
16. makeMaps : Incremented (++a) integer local variable number 1 → SURVIVED
17. makeMaps : changed conditional boundary → KILLED
18. makeMaps : Changed increment from 1 to -1 → KILLED
19. makeMaps : Substituted 256 with 257 → KILLED
20. makeMaps : removed conditional - replaced comparison check with true → KILLED
21. makeMaps : Negated integer local variable number 1 → KILLED
22. makeMaps : Substituted 0 with -1 → KILLED
23. makeMaps : Substituted 256 with 257 → KILLED
24. makeMaps : Substituted 0 with -1 → KILLED
25. makeMaps : greater or equal to greater than → KILLED
26. makeMaps : Decremented (a--) integer local variable number 1 → KILLED
27. makeMaps : Decremented (--a) integer local variable number 1 → KILLED
        for (i = 0; i < 256; i++) {
57 18 1. makeMaps : negated conditional → SURVIVED
2. makeMaps : removed conditional - replaced equality check with false → SURVIVED
3. makeMaps : removed conditional - replaced equality check with true → SURVIVED
4. makeMaps : Negated byte array field → SURVIVED
5. makeMaps : equal to less than → SURVIVED
6. makeMaps : equal to less or equal → SURVIVED
7. makeMaps : equal to greater than → SURVIVED
8. makeMaps : equal to greater or equal → SURVIVED
9. makeMaps : equal to not equal → SURVIVED
10. makeMaps : Incremented (a++) integer local variable number 1 → SURVIVED
11. makeMaps : Incremented (a++) byte array field → SURVIVED
12. makeMaps : Decremented (a--) byte array field → SURVIVED
13. makeMaps : Incremented (++a) integer local variable number 1 → SURVIVED
14. makeMaps : Incremented (++a) byte array field → SURVIVED
15. makeMaps : Decremented (--a) byte array field → SURVIVED
16. makeMaps : Decremented (a--) integer local variable number 1 → TIMED_OUT
17. makeMaps : Negated integer local variable number 1 → KILLED
18. makeMaps : Decremented (--a) integer local variable number 1 → KILLED
            if (inUse[i]) {
58 10 1. makeMaps : Negated integer local variable number 1 → SURVIVED
2. makeMaps : Incremented (a++) integer field nInUse → SURVIVED
3. makeMaps : Incremented (a++) integer local variable number 1 → SURVIVED
4. makeMaps : Incremented (++a) integer field nInUse → SURVIVED
5. makeMaps : Incremented (++a) integer local variable number 1 → SURVIVED
6. makeMaps : Negated integer field nInUse → KILLED
7. makeMaps : Decremented (a--) integer field nInUse → KILLED
8. makeMaps : Decremented (a--) integer local variable number 1 → KILLED
9. makeMaps : Decremented (--a) integer fieldnInUse → KILLED
10. makeMaps : Decremented (--a) integer local variable number 1 → KILLED
                seqToUnseq[nInUse] = (char) i;
59 10 1. makeMaps : Incremented (a++) integer local variable number 1 → SURVIVED
2. makeMaps : Incremented (a++) integer field nInUse → SURVIVED
3. makeMaps : Decremented (a--) integer field nInUse → SURVIVED
4. makeMaps : Incremented (++a) integer local variable number 1 → SURVIVED
5. makeMaps : Incremented (++a) integer field nInUse → SURVIVED
6. makeMaps : Negated integer local variable number 1 → KILLED
7. makeMaps : Negated integer field nInUse → KILLED
8. makeMaps : Decremented (a--) integer local variable number 1 → KILLED
9. makeMaps : Decremented (--a) integer local variable number 1 → KILLED
10. makeMaps : Decremented (--a) integer fieldnInUse → KILLED
                unseqToSeq[i] = (char) nInUse;
60 19 1. makeMaps : Substituted 1 with 0 → SURVIVED
2. makeMaps : Removed assignment to member variable nInUse → SURVIVED
3. makeMaps : Replaced integer operation with first member → SURVIVED
4. makeMaps : Replaced integer addition with multiplication → SURVIVED
5. makeMaps : Replaced integer addition with division → SURVIVED
6. makeMaps : Replaced integer addition with modulus → SURVIVED
7. makeMaps : Substituted 1 with 0 → SURVIVED
8. makeMaps : Substituted 1 with 2 → SURVIVED
9. makeMaps : Substituted 1 with 0 → SURVIVED
10. makeMaps : Incremented (a++) integer field nInUse → SURVIVED
11. makeMaps : Decremented (a--) integer field nInUse → SURVIVED
12. makeMaps : Incremented (++a) integer field nInUse → SURVIVED
13. makeMaps : Decremented (--a) integer fieldnInUse → SURVIVED
14. makeMaps : Replaced integer addition with subtraction → KILLED
15. makeMaps : Negated integer field nInUse → KILLED
16. makeMaps : Replaced integer operation by second member → KILLED
17. makeMaps : Replaced integer addition with subtraction → KILLED
18. makeMaps : Substituted 1 with -1 → KILLED
19. makeMaps : Substituted 1 with -1 → KILLED
                nInUse++;
61
            }
62
        }
63
    }
64
65
    protected static void hbMakeCodeLengths(char[] len, int[] freq,
66
                                            int alphaSize, int maxLen) {
67
        /*
68
          Nodes and heap entries run from 1.  Entry 0
69
          for both the heap and nodes is a sentinel.
70
        */
71
        int nNodes, nHeap, n1, n2, i, j, k;
72
        boolean  tooLong;
73
74 7 1. hbMakeCodeLengths : Substituted 260 with 261 → SURVIVED
2. hbMakeCodeLengths : Substituted 260 with 261 → SURVIVED
3. hbMakeCodeLengths : Substituted 260 with 259 → SURVIVED
4. hbMakeCodeLengths : Substituted 260 with 1 → KILLED
5. hbMakeCodeLengths : Substituted 260 with 0 → KILLED
6. hbMakeCodeLengths : Substituted 260 with -1 → KILLED
7. hbMakeCodeLengths : Substituted 260 with -260 → KILLED
        int[] heap = new int[MAX_ALPHA_SIZE + 2];
75 7 1. hbMakeCodeLengths : Substituted 516 with 517 → SURVIVED
2. hbMakeCodeLengths : Substituted 516 with 517 → SURVIVED
3. hbMakeCodeLengths : Substituted 516 with 515 → SURVIVED
4. hbMakeCodeLengths : Substituted 516 with 1 → KILLED
5. hbMakeCodeLengths : Substituted 516 with 0 → KILLED
6. hbMakeCodeLengths : Substituted 516 with -1 → KILLED
7. hbMakeCodeLengths : Substituted 516 with -516 → KILLED
        int[] weight = new int[MAX_ALPHA_SIZE * 2];
76 7 1. hbMakeCodeLengths : Substituted 516 with 517 → SURVIVED
2. hbMakeCodeLengths : Substituted 516 with 517 → SURVIVED
3. hbMakeCodeLengths : Substituted 516 with 515 → SURVIVED
4. hbMakeCodeLengths : Substituted 516 with 1 → KILLED
5. hbMakeCodeLengths : Substituted 516 with 0 → KILLED
6. hbMakeCodeLengths : Substituted 516 with -1 → KILLED
7. hbMakeCodeLengths : Substituted 516 with -516 → KILLED
        int[] parent = new int[MAX_ALPHA_SIZE * 2];
77
78 25 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : negated conditional → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
5. hbMakeCodeLengths : Negated integer local variable number 2 → SURVIVED
6. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
7. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
8. hbMakeCodeLengths : greater or equal to less than → SURVIVED
9. hbMakeCodeLengths : greater or equal to less or equal → SURVIVED
10. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
11. hbMakeCodeLengths : greater or equal to equal → SURVIVED
12. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
13. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
14. hbMakeCodeLengths : Decremented (a--) integer local variable number 2 → SURVIVED
15. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
16. hbMakeCodeLengths : Decremented (--a) integer local variable number 2 → SURVIVED
17. hbMakeCodeLengths : Changed increment from 1 to -1 → KILLED
18. hbMakeCodeLengths : removed conditional - replaced comparison check with true → KILLED
19. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
20. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
21. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
22. hbMakeCodeLengths : Incremented (a++) integer local variable number 2 → KILLED
23. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → KILLED
24. hbMakeCodeLengths : Incremented (++a) integer local variable number 2 → KILLED
25. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
        for (i = 0; i < alphaSize; i++) {
79 60 1. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : Substituted 8 with 9 → SURVIVED
4. hbMakeCodeLengths : Replaced Shift Left with Shift Right → SURVIVED
5. hbMakeCodeLengths : negated conditional → SURVIVED
6. hbMakeCodeLengths : removed conditional - replaced equality check with false → SURVIVED
7. hbMakeCodeLengths : removed conditional - replaced equality check with true → SURVIVED
8. hbMakeCodeLengths : Negated integer array field → SURVIVED
9. hbMakeCodeLengths : Replaced integer operation with first member → SURVIVED
10. hbMakeCodeLengths : Replaced integer operation by second member → SURVIVED
11. hbMakeCodeLengths : Replaced integer addition with multiplication → SURVIVED
12. hbMakeCodeLengths : Replaced integer addition with division → SURVIVED
13. hbMakeCodeLengths : Replaced integer addition with modulus → SURVIVED
14. hbMakeCodeLengths : Substituted 8 with 1 → SURVIVED
15. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
16. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
17. hbMakeCodeLengths : Substituted 8 with 0 → SURVIVED
18. hbMakeCodeLengths : Substituted 8 with -8 → SURVIVED
19. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
20. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
21. hbMakeCodeLengths : Substituted 8 with 9 → SURVIVED
22. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
23. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
24. hbMakeCodeLengths : Substituted 8 with 7 → SURVIVED
25. hbMakeCodeLengths : not equal to less than → SURVIVED
26. hbMakeCodeLengths : not equal to less or equal → SURVIVED
27. hbMakeCodeLengths : not equal to greater than → SURVIVED
28. hbMakeCodeLengths : not equal to greater or equal → SURVIVED
29. hbMakeCodeLengths : not equal to equal → SURVIVED
30. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
31. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
32. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
33. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
34. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
35. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
36. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
37. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
38. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
39. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
40. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
41. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
42. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
43. hbMakeCodeLengths : Negated integer array field → TIMED_OUT
44. hbMakeCodeLengths : Substituted 1 with -1 → TIMED_OUT
45. hbMakeCodeLengths : Substituted 8 with -1 → TIMED_OUT
46. hbMakeCodeLengths : Substituted 1 with -1 → TIMED_OUT
47. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → TIMED_OUT
48. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → TIMED_OUT
49. hbMakeCodeLengths : Decremented (--a) integer array field → TIMED_OUT
50. hbMakeCodeLengths : Replaced integer addition with subtraction → KILLED
51. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
52. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
53. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
54. hbMakeCodeLengths : Replaced integer addition with subtraction → KILLED
55. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
56. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
57. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → KILLED
58. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
59. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
60. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
            weight[i + 1] = (freq[i] == 0 ? 1 : freq[i]) << 8;
80
        }
81
82
        while (true) {
83 5 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 2 → SURVIVED
2. hbMakeCodeLengths : Decremented (a--) integer local variable number 2 → SURVIVED
3. hbMakeCodeLengths : Incremented (++a) integer local variable number 2 → SURVIVED
4. hbMakeCodeLengths : Decremented (--a) integer local variable number 2 → SURVIVED
5. hbMakeCodeLengths : Negated integer local variable number 2 → KILLED
            nNodes = alphaSize;
84 5 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
4. hbMakeCodeLengths : Substituted 0 with -1 → TIMED_OUT
5. hbMakeCodeLengths : Substituted 0 with -1 → TIMED_OUT
            nHeap = 0;
85
86 10 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
4. hbMakeCodeLengths : Substituted 0 with 1 → TIMED_OUT
5. hbMakeCodeLengths : Substituted 0 with 1 → TIMED_OUT
6. hbMakeCodeLengths : Substituted 0 with 1 → TIMED_OUT
7. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
8. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
9. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
10. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
            heap[0] = 0;
87 10 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
4. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
6. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
7. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
8. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
9. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
10. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
            weight[0] = 0;
88 12 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted -2 with -1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
4. hbMakeCodeLengths : Substituted -2 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted -2 with 0 → SURVIVED
6. hbMakeCodeLengths : Substituted -2 with -1 → SURVIVED
7. hbMakeCodeLengths : Substituted -2 with 2 → SURVIVED
8. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
9. hbMakeCodeLengths : Substituted -2 with -1 → SURVIVED
10. hbMakeCodeLengths : Substituted -2 with -3 → SURVIVED
11. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
12. hbMakeCodeLengths : Substituted 0 with -1 → KILLED
            parent[0] = -2;
89
90 26 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : negated conditional → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
5. hbMakeCodeLengths : Negated integer local variable number 2 → SURVIVED
6. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
7. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
8. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
9. hbMakeCodeLengths : greater than to less than → SURVIVED
10. hbMakeCodeLengths : greater than to less or equal → SURVIVED
11. hbMakeCodeLengths : greater than to greater or equal → SURVIVED
12. hbMakeCodeLengths : greater than to equal → SURVIVED
13. hbMakeCodeLengths : greater than to not equal → SURVIVED
14. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
15. hbMakeCodeLengths : Decremented (a--) integer local variable number 2 → SURVIVED
16. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
17. hbMakeCodeLengths : Decremented (--a) integer local variable number 2 → SURVIVED
18. hbMakeCodeLengths : Changed increment from 1 to -1 → KILLED
19. hbMakeCodeLengths : removed conditional - replaced comparison check with true → KILLED
20. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
21. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
22. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
23. hbMakeCodeLengths : Incremented (a++) integer local variable number 2 → KILLED
24. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → KILLED
25. hbMakeCodeLengths : Incremented (++a) integer local variable number 2 → KILLED
26. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
            for (i = 1; i <= alphaSize; i++) {
91 11 1. hbMakeCodeLengths : Substituted -1 with 0 → SURVIVED
2. hbMakeCodeLengths : Substituted -1 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted -1 with 0 → SURVIVED
4. hbMakeCodeLengths : Substituted -1 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted -1 with 0 → SURVIVED
6. hbMakeCodeLengths : Substituted -1 with -2 → SURVIVED
7. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
8. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
9. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
10. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → KILLED
11. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
                parent[i] = -1;
92 2 1. hbMakeCodeLengths : Removed increment 1 → SURVIVED
2. hbMakeCodeLengths : Changed increment from 1 to -1 → KILLED
                nHeap++;
93 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
4. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
6. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
7. hbMakeCodeLengths : Negated integer local variable number 9 → KILLED
8. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
9. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → KILLED
10. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
                heap[nHeap] = i;
94
                {
95
                    int zz, tmp;
96 5 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → SURVIVED
2. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
3. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → SURVIVED
4. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
5. hbMakeCodeLengths : Negated integer local variable number 9 → KILLED
                    zz = nHeap;
97 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
4. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
6. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
8. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → TIMED_OUT
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer array field → KILLED
                    tmp = heap[zz];
98 41 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : Replaced Shift Right with Shift Left → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
5. hbMakeCodeLengths : Negated integer array field → SURVIVED
6. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
7. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
8. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
9. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
10. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
11. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
12. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
13. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
14. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
15. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
16. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
17. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
18. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → SURVIVED
19. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
20. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
21. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
22. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
23. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
24. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
25. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → SURVIVED
26. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
27. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
28. hbMakeCodeLengths : negated conditional → TIMED_OUT
29. hbMakeCodeLengths : removed conditional - replaced comparison check with true → TIMED_OUT
30. hbMakeCodeLengths : Negated integer array field → TIMED_OUT
31. hbMakeCodeLengths : greater or equal to less than → TIMED_OUT
32. hbMakeCodeLengths : greater or equal to less or equal → TIMED_OUT
33. hbMakeCodeLengths : greater or equal to equal → TIMED_OUT
34. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → TIMED_OUT
35. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
36. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
37. hbMakeCodeLengths : Negated integer array field → KILLED
38. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → KILLED
39. hbMakeCodeLengths : Decremented (a--) integer array field → KILLED
40. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → KILLED
41. hbMakeCodeLengths : Decremented (--a) integer array field → KILLED
                    while (weight[tmp] < weight[heap[zz >> 1]]) {
99 22 1. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
2. hbMakeCodeLengths : Replaced Shift Right with Shift Left → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
4. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
5. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
6. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
7. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
8. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
9. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
10. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
11. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
12. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
13. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
14. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
15. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
16. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
17. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
18. hbMakeCodeLengths : Negated integer array field → KILLED
19. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → KILLED
20. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → KILLED
21. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → KILLED
22. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → KILLED
                        heap[zz] = heap[zz >> 1];
100 12 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
3. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
5. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
6. hbMakeCodeLengths : Substituted 1 with -1 → TIMED_OUT
7. hbMakeCodeLengths : Substituted 1 with -1 → TIMED_OUT
8. hbMakeCodeLengths : Substituted 1 with 2 → TIMED_OUT
9. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
10. hbMakeCodeLengths : Replaced Shift Right with Shift Left → KILLED
11. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
12. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → KILLED
                        zz >>= 1;
101
                    }
102 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → TIMED_OUT
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
                    heap[zz] = tmp;
103
                }
104
            }
105 21 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 260 with 261 → SURVIVED
3. hbMakeCodeLengths : negated conditional → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
5. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
6. hbMakeCodeLengths : Negated integer local variable number 9 → SURVIVED
7. hbMakeCodeLengths : Substituted 260 with 1 → SURVIVED
8. hbMakeCodeLengths : Substituted 260 with 0 → SURVIVED
9. hbMakeCodeLengths : Substituted 260 with -1 → SURVIVED
10. hbMakeCodeLengths : Substituted 260 with -260 → SURVIVED
11. hbMakeCodeLengths : Substituted 260 with 261 → SURVIVED
12. hbMakeCodeLengths : Substituted 260 with 259 → SURVIVED
13. hbMakeCodeLengths : Less than to less or equal → SURVIVED
14. hbMakeCodeLengths : Less than to greater than → SURVIVED
15. hbMakeCodeLengths : Less than to greater or equal → SURVIVED
16. hbMakeCodeLengths : Less than to equal → SURVIVED
17. hbMakeCodeLengths : Less than to not equal → SURVIVED
18. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → SURVIVED
19. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
20. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → SURVIVED
21. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
            if (!(nHeap < (MAX_ALPHA_SIZE + 2))) {
106 1 1. hbMakeCodeLengths : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
                panic();
107
            }
108
109 20 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : negated conditional → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
5. hbMakeCodeLengths : Negated integer local variable number 9 → SURVIVED
6. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
7. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
8. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
9. hbMakeCodeLengths : Less or equal to less than → SURVIVED
10. hbMakeCodeLengths : Less or equal to greater than → SURVIVED
11. hbMakeCodeLengths : Less or equal to greater or equal → SURVIVED
12. hbMakeCodeLengths : Less or equal to equal → SURVIVED
13. hbMakeCodeLengths : Less or equal to not equal → SURVIVED
14. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
15. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
16. hbMakeCodeLengths : removed conditional - replaced comparison check with true → KILLED
17. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
18. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
19. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → KILLED
20. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → KILLED
            while (nHeap > 1) {
110 11 1. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
4. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
5. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
6. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
7. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
9. hbMakeCodeLengths : Negated integer array field → KILLED
10. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
11. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
                n1 = heap[1];
111 16 1. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
6. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
8. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
9. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
10. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
11. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → TIMED_OUT
12. hbMakeCodeLengths : Negated integer local variable number 9 → KILLED
13. hbMakeCodeLengths : Negated integer array field → KILLED
14. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
15. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
16. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → KILLED
                heap[1] = heap[nHeap];
112 2 1. hbMakeCodeLengths : Removed increment -1 → TIMED_OUT
2. hbMakeCodeLengths : Changed increment from -1 to 1 → KILLED
                nHeap--;
113
                {
114 15 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
4. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
6. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
7. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
8. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
9. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
10. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
11. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
12. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
13. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
14. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
15. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
                    int zz = 0, yy = 0, tmp = 0;
115 6 1. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
3. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
4. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
5. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
6. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
                    zz = 1;
116 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
4. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
6. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
7. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → TIMED_OUT
8. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → TIMED_OUT
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer array field → KILLED
                    tmp = heap[zz];
117
                    while (true) {
118 12 1. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
6. hbMakeCodeLengths : Replaced Shift Left with Shift Right → TIMED_OUT
7. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
8. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
11. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
12. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → KILLED
                        yy = zz << 1;
119 19 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
3. hbMakeCodeLengths : Negated integer local variable number 9 → SURVIVED
4. hbMakeCodeLengths : Less or equal to less than → SURVIVED
5. hbMakeCodeLengths : Less or equal to equal → SURVIVED
6. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
7. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
8. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
9. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
10. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
11. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
12. hbMakeCodeLengths : negated conditional → KILLED
13. hbMakeCodeLengths : removed conditional - replaced comparison check with false → KILLED
14. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
15. hbMakeCodeLengths : Less or equal to greater than → KILLED
16. hbMakeCodeLengths : Less or equal to greater or equal → KILLED
17. hbMakeCodeLengths : Less or equal to not equal → KILLED
18. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → KILLED
19. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → KILLED
                        if (yy > nHeap) {
120
                            break;
121
                        }
122 71 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : changed conditional boundary → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
4. hbMakeCodeLengths : Replaced integer addition with subtraction → SURVIVED
5. hbMakeCodeLengths : negated conditional → SURVIVED
6. hbMakeCodeLengths : negated conditional → SURVIVED
7. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
8. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
9. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
10. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
11. hbMakeCodeLengths : Negated integer local variable number 11 → SURVIVED
12. hbMakeCodeLengths : Negated integer local variable number 9 → SURVIVED
13. hbMakeCodeLengths : Negated integer array field → SURVIVED
14. hbMakeCodeLengths : Negated integer array field → SURVIVED
15. hbMakeCodeLengths : Replaced integer operation with first member → SURVIVED
16. hbMakeCodeLengths : Replaced integer operation by second member → SURVIVED
17. hbMakeCodeLengths : Replaced integer addition with subtraction → SURVIVED
18. hbMakeCodeLengths : Replaced integer addition with multiplication → SURVIVED
19. hbMakeCodeLengths : Replaced integer addition with division → SURVIVED
20. hbMakeCodeLengths : Replaced integer addition with modulus → SURVIVED
21. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
22. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
23. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
24. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
25. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
26. hbMakeCodeLengths : greater or equal to less than → SURVIVED
27. hbMakeCodeLengths : greater or equal to less than → SURVIVED
28. hbMakeCodeLengths : greater or equal to less or equal → SURVIVED
29. hbMakeCodeLengths : greater or equal to less or equal → SURVIVED
30. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
31. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
32. hbMakeCodeLengths : greater or equal to equal → SURVIVED
33. hbMakeCodeLengths : greater or equal to equal → SURVIVED
34. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
35. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
36. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
37. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
38. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
39. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
40. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
41. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
42. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
43. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
44. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
45. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
46. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
47. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
48. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
49. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
50. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
51. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
52. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
53. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
54. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
55. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
56. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
57. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
58. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
59. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
60. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
61. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
62. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
63. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
64. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
65. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
66. hbMakeCodeLengths : Negated integer array field → KILLED
67. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
68. hbMakeCodeLengths : Negated integer array field → KILLED
69. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → KILLED
70. hbMakeCodeLengths : Decremented (a--) integer array field → KILLED
71. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → KILLED
                        if (yy < nHeap
123
                            && weight[heap[yy + 1]] < weight[heap[yy]]) {
124 2 1. hbMakeCodeLengths : Removed increment 1 → SURVIVED
2. hbMakeCodeLengths : Changed increment from 1 to -1 → TIMED_OUT
                            yy++;
125
                        }
126 34 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : negated conditional → SURVIVED
3. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
5. hbMakeCodeLengths : Negated integer array field → SURVIVED
6. hbMakeCodeLengths : Negated integer array field → SURVIVED
7. hbMakeCodeLengths : greater or equal to less than → SURVIVED
8. hbMakeCodeLengths : greater or equal to less or equal → SURVIVED
9. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
10. hbMakeCodeLengths : greater or equal to equal → SURVIVED
11. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
12. hbMakeCodeLengths : Incremented (a++) integer local variable number 17 → SURVIVED
13. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
14. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
15. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
16. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
17. hbMakeCodeLengths : Decremented (a--) integer local variable number 17 → SURVIVED
18. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
19. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
20. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
21. hbMakeCodeLengths : Incremented (++a) integer local variable number 17 → SURVIVED
22. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
23. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
24. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
25. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
26. hbMakeCodeLengths : Decremented (--a) integer local variable number 17 → SURVIVED
27. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
28. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
29. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
30. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
31. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
32. hbMakeCodeLengths : Negated integer local variable number 13 → KILLED
33. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
34. hbMakeCodeLengths : Negated integer array field → KILLED
                        if (weight[tmp] < weight[heap[yy]]) {
127
                            break;
128
                        }
129 15 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
3. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
7. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
8. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
9. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
10. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
11. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
12. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
13. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
14. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
15. hbMakeCodeLengths : Negated integer array field → KILLED
                        heap[zz] = heap[yy];
130 5 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
2. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → SURVIVED
3. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
4. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
5. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
                        zz = yy;
131
                    }
132 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 17 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer local variable number 17 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer local variable number 17 → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer local variable number 17 → SURVIVED
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer local variable number 13 → KILLED
                    heap[zz] = tmp;
133
                }
134 11 1. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
4. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
5. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
6. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
7. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
9. hbMakeCodeLengths : Negated integer array field → KILLED
10. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
11. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
                n2 = heap[1];
135 16 1. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
4. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
5. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
6. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
7. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
8. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
9. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
10. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
11. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → TIMED_OUT
12. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → TIMED_OUT
13. hbMakeCodeLengths : Negated integer local variable number 9 → KILLED
14. hbMakeCodeLengths : Negated integer array field → KILLED
15. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
16. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
                heap[1] = heap[nHeap];
136 2 1. hbMakeCodeLengths : Removed increment -1 → TIMED_OUT
2. hbMakeCodeLengths : Changed increment from -1 to 1 → KILLED
                nHeap--;
137
                {
138 15 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
4. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
6. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
7. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
8. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
9. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
10. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
11. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
12. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
13. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
14. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
15. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
                    int zz = 0, yy = 0, tmp = 0;
139 6 1. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
3. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
4. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
5. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
6. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
                    zz = 1;
140 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
4. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
6. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
7. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → TIMED_OUT
8. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → TIMED_OUT
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer array field → KILLED
                    tmp = heap[zz];
141
                    while (true) {
142 12 1. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
6. hbMakeCodeLengths : Replaced Shift Left with Shift Right → TIMED_OUT
7. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
8. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
11. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
12. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → KILLED
                        yy = zz << 1;
143 19 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
3. hbMakeCodeLengths : Negated integer local variable number 9 → SURVIVED
4. hbMakeCodeLengths : Less or equal to less than → SURVIVED
5. hbMakeCodeLengths : Less or equal to equal → SURVIVED
6. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
7. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
8. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
9. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
10. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
11. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
12. hbMakeCodeLengths : negated conditional → KILLED
13. hbMakeCodeLengths : removed conditional - replaced comparison check with false → KILLED
14. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
15. hbMakeCodeLengths : Less or equal to greater than → KILLED
16. hbMakeCodeLengths : Less or equal to greater or equal → KILLED
17. hbMakeCodeLengths : Less or equal to not equal → KILLED
18. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → KILLED
19. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → KILLED
                        if (yy > nHeap) {
144
                            break;
145
                        }
146 71 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : changed conditional boundary → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
4. hbMakeCodeLengths : Replaced integer addition with subtraction → SURVIVED
5. hbMakeCodeLengths : negated conditional → SURVIVED
6. hbMakeCodeLengths : negated conditional → SURVIVED
7. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
8. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
9. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
10. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
11. hbMakeCodeLengths : Negated integer local variable number 11 → SURVIVED
12. hbMakeCodeLengths : Negated integer local variable number 9 → SURVIVED
13. hbMakeCodeLengths : Negated integer array field → SURVIVED
14. hbMakeCodeLengths : Negated integer array field → SURVIVED
15. hbMakeCodeLengths : Replaced integer operation with first member → SURVIVED
16. hbMakeCodeLengths : Replaced integer operation by second member → SURVIVED
17. hbMakeCodeLengths : Replaced integer addition with subtraction → SURVIVED
18. hbMakeCodeLengths : Replaced integer addition with multiplication → SURVIVED
19. hbMakeCodeLengths : Replaced integer addition with division → SURVIVED
20. hbMakeCodeLengths : Replaced integer addition with modulus → SURVIVED
21. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
22. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
23. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
24. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
25. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
26. hbMakeCodeLengths : greater or equal to less than → SURVIVED
27. hbMakeCodeLengths : greater or equal to less than → SURVIVED
28. hbMakeCodeLengths : greater or equal to less or equal → SURVIVED
29. hbMakeCodeLengths : greater or equal to less or equal → SURVIVED
30. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
31. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
32. hbMakeCodeLengths : greater or equal to equal → SURVIVED
33. hbMakeCodeLengths : greater or equal to equal → SURVIVED
34. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
35. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
36. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
37. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
38. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
39. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
40. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
41. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
42. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
43. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
44. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
45. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
46. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
47. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
48. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
49. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
50. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
51. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
52. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
53. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
54. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
55. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
56. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
57. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
58. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
59. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
60. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
61. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
62. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
63. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
64. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
65. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
66. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
67. hbMakeCodeLengths : Negated integer array field → KILLED
68. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
69. hbMakeCodeLengths : Negated integer array field → KILLED
70. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → KILLED
71. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → KILLED
                        if (yy < nHeap
147
                            && weight[heap[yy + 1]] < weight[heap[yy]]) {
148 2 1. hbMakeCodeLengths : Changed increment from 1 to -1 → NO_COVERAGE
2. hbMakeCodeLengths : Removed increment 1 → NO_COVERAGE
                            yy++;
149
                        }
150 34 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : negated conditional → SURVIVED
3. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
5. hbMakeCodeLengths : Negated integer array field → SURVIVED
6. hbMakeCodeLengths : Negated integer array field → SURVIVED
7. hbMakeCodeLengths : greater or equal to less than → SURVIVED
8. hbMakeCodeLengths : greater or equal to less or equal → SURVIVED
9. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
10. hbMakeCodeLengths : greater or equal to equal → SURVIVED
11. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
12. hbMakeCodeLengths : Incremented (a++) integer local variable number 17 → SURVIVED
13. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
14. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
15. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
16. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
17. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
18. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
19. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
20. hbMakeCodeLengths : Incremented (++a) integer local variable number 17 → SURVIVED
21. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
22. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
23. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
24. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
25. hbMakeCodeLengths : Decremented (--a) integer local variable number 17 → SURVIVED
26. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
27. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
28. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
29. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
30. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
31. hbMakeCodeLengths : Negated integer local variable number 13 → KILLED
32. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
33. hbMakeCodeLengths : Negated integer array field → KILLED
34. hbMakeCodeLengths : Decremented (a--) integer local variable number 17 → KILLED
                        if (weight[tmp] < weight[heap[yy]]) {
151
                            break;
152
                        }
153 15 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
3. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
7. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
8. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
9. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
10. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → TIMED_OUT
11. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → TIMED_OUT
12. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
13. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
14. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
15. hbMakeCodeLengths : Negated integer array field → KILLED
                        heap[zz] = heap[yy];
154 5 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
2. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → SURVIVED
3. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
4. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → TIMED_OUT
5. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
                        zz = yy;
155
                    }
156 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 17 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer local variable number 17 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer local variable number 17 → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer local variable number 17 → SURVIVED
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer local variable number 13 → KILLED
                    heap[zz] = tmp;
157
                }
158 2 1. hbMakeCodeLengths : Changed increment from 1 to -1 → SURVIVED
2. hbMakeCodeLengths : Removed increment 1 → SURVIVED
                nNodes++;
159 15 1. hbMakeCodeLengths : Negated integer local variable number 8 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 6 → SURVIVED
3. hbMakeCodeLengths : Incremented (a++) integer local variable number 7 → SURVIVED
4. hbMakeCodeLengths : Incremented (a++) integer local variable number 4 → SURVIVED
5. hbMakeCodeLengths : Decremented (a--) integer local variable number 6 → SURVIVED
6. hbMakeCodeLengths : Decremented (a--) integer local variable number 7 → SURVIVED
7. hbMakeCodeLengths : Decremented (a--) integer local variable number 4 → SURVIVED
8. hbMakeCodeLengths : Incremented (++a) integer local variable number 6 → SURVIVED
9. hbMakeCodeLengths : Incremented (++a) integer local variable number 7 → SURVIVED
10. hbMakeCodeLengths : Incremented (++a) integer local variable number 4 → SURVIVED
11. hbMakeCodeLengths : Decremented (--a) integer local variable number 6 → SURVIVED
12. hbMakeCodeLengths : Decremented (--a) integer local variable number 7 → SURVIVED
13. hbMakeCodeLengths : Decremented (--a) integer local variable number 4 → SURVIVED
14. hbMakeCodeLengths : Negated integer local variable number 12 → KILLED
15. hbMakeCodeLengths : Negated integer local variable number 14 → KILLED
                parent[n1] = parent[n2] = nNodes;
160
161 60 1. hbMakeCodeLengths : Substituted -256 with -255 → SURVIVED
2. hbMakeCodeLengths : Substituted -256 with -255 → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
4. hbMakeCodeLengths : Replaced bitwise AND with OR → SURVIVED
5. hbMakeCodeLengths : Negated integer array field → SURVIVED
6. hbMakeCodeLengths : Replaced integer operation with first member → SURVIVED
7. hbMakeCodeLengths : Replaced integer operation by second member → SURVIVED
8. hbMakeCodeLengths : Replaced integer addition with multiplication → SURVIVED
9. hbMakeCodeLengths : Replaced integer addition with division → SURVIVED
10. hbMakeCodeLengths : Replaced integer addition with modulus → SURVIVED
11. hbMakeCodeLengths : Substituted -256 with 1 → SURVIVED
12. hbMakeCodeLengths : Substituted -256 with 1 → SURVIVED
13. hbMakeCodeLengths : Substituted -256 with 0 → SURVIVED
14. hbMakeCodeLengths : Substituted -256 with 0 → SURVIVED
15. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
16. hbMakeCodeLengths : Substituted -256 with -1 → SURVIVED
17. hbMakeCodeLengths : Substituted -256 with -1 → SURVIVED
18. hbMakeCodeLengths : Substituted -256 with 256 → SURVIVED
19. hbMakeCodeLengths : Substituted -256 with 256 → SURVIVED
20. hbMakeCodeLengths : Substituted -256 with -255 → SURVIVED
21. hbMakeCodeLengths : Substituted -256 with -255 → SURVIVED
22. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
23. hbMakeCodeLengths : Substituted -256 with -257 → SURVIVED
24. hbMakeCodeLengths : Substituted -256 with -257 → SURVIVED
25. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
26. hbMakeCodeLengths : Replaced integer and with or → SURVIVED
27. hbMakeCodeLengths : Replaced integer and by first member → SURVIVED
28. hbMakeCodeLengths : Replaced integer and by first member → SURVIVED
29. hbMakeCodeLengths : Replace integer and by second member → SURVIVED
30. hbMakeCodeLengths : Incremented (a++) integer local variable number 4 → SURVIVED
31. hbMakeCodeLengths : Incremented (a++) integer local variable number 6 → SURVIVED
32. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
33. hbMakeCodeLengths : Incremented (a++) integer local variable number 7 → SURVIVED
34. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
35. hbMakeCodeLengths : Decremented (a--) integer local variable number 4 → SURVIVED
36. hbMakeCodeLengths : Decremented (a--) integer local variable number 6 → SURVIVED
37. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
38. hbMakeCodeLengths : Decremented (a--) integer local variable number 7 → SURVIVED
39. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
40. hbMakeCodeLengths : Incremented (++a) integer local variable number 4 → SURVIVED
41. hbMakeCodeLengths : Incremented (++a) integer local variable number 6 → SURVIVED
42. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
43. hbMakeCodeLengths : Incremented (++a) integer local variable number 7 → SURVIVED
44. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
45. hbMakeCodeLengths : Decremented (--a) integer local variable number 4 → SURVIVED
46. hbMakeCodeLengths : Decremented (--a) integer local variable number 6 → SURVIVED
47. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
48. hbMakeCodeLengths : Decremented (--a) integer local variable number 7 → SURVIVED
49. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
50. hbMakeCodeLengths : Replaced bitwise AND with OR → TIMED_OUT
51. hbMakeCodeLengths : Replaced integer addition with subtraction → TIMED_OUT
52. hbMakeCodeLengths : Negated integer array field → TIMED_OUT
53. hbMakeCodeLengths : Replaced integer addition with subtraction → TIMED_OUT
54. hbMakeCodeLengths : Substituted 1 with -1 → TIMED_OUT
55. hbMakeCodeLengths : Substituted 1 with -1 → TIMED_OUT
56. hbMakeCodeLengths : Replaced integer and with or → TIMED_OUT
57. hbMakeCodeLengths : Replace integer and by second member → TIMED_OUT
58. hbMakeCodeLengths : Negated integer local variable number 8 → KILLED
59. hbMakeCodeLengths : Negated integer local variable number 12 → KILLED
60. hbMakeCodeLengths : Negated integer local variable number 14 → KILLED
                weight[nNodes] = ((weight[n1] & 0xffffff00)
162
                                  + (weight[n2] & 0xffffff00))
163 51 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
3. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
4. hbMakeCodeLengths : Replaced bitwise AND with OR → SURVIVED
5. hbMakeCodeLengths : Replaced bitwise AND with OR → SURVIVED
6. hbMakeCodeLengths : negated conditional → SURVIVED
7. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
8. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
9. hbMakeCodeLengths : Negated integer array field → SURVIVED
10. hbMakeCodeLengths : Negated integer array field → SURVIVED
11. hbMakeCodeLengths : Substituted 255 with 1 → SURVIVED
12. hbMakeCodeLengths : Substituted 255 with 1 → SURVIVED
13. hbMakeCodeLengths : Substituted 255 with 0 → SURVIVED
14. hbMakeCodeLengths : Substituted 255 with 0 → SURVIVED
15. hbMakeCodeLengths : Substituted 255 with -1 → SURVIVED
16. hbMakeCodeLengths : Substituted 255 with -1 → SURVIVED
17. hbMakeCodeLengths : Substituted 255 with -255 → SURVIVED
18. hbMakeCodeLengths : Substituted 255 with -255 → SURVIVED
19. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
20. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
21. hbMakeCodeLengths : Substituted 255 with 254 → SURVIVED
22. hbMakeCodeLengths : Substituted 255 with 254 → SURVIVED
23. hbMakeCodeLengths : Replaced integer and with or → SURVIVED
24. hbMakeCodeLengths : Replaced integer and with or → SURVIVED
25. hbMakeCodeLengths : Replaced integer and by first member → SURVIVED
26. hbMakeCodeLengths : Replaced integer and by first member → SURVIVED
27. hbMakeCodeLengths : Replace integer and by second member → SURVIVED
28. hbMakeCodeLengths : Replace integer and by second member → SURVIVED
29. hbMakeCodeLengths : Less or equal to less than → SURVIVED
30. hbMakeCodeLengths : Less or equal to greater than → SURVIVED
31. hbMakeCodeLengths : Less or equal to greater or equal → SURVIVED
32. hbMakeCodeLengths : Less or equal to equal → SURVIVED
33. hbMakeCodeLengths : Less or equal to not equal → SURVIVED
34. hbMakeCodeLengths : Incremented (a++) integer local variable number 6 → SURVIVED
35. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
36. hbMakeCodeLengths : Incremented (a++) integer local variable number 7 → SURVIVED
37. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
38. hbMakeCodeLengths : Decremented (a--) integer local variable number 6 → SURVIVED
39. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
40. hbMakeCodeLengths : Decremented (a--) integer local variable number 7 → SURVIVED
41. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
42. hbMakeCodeLengths : Incremented (++a) integer local variable number 6 → SURVIVED
43. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
44. hbMakeCodeLengths : Incremented (++a) integer local variable number 7 → SURVIVED
45. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
46. hbMakeCodeLengths : Decremented (--a) integer local variable number 6 → SURVIVED
47. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
48. hbMakeCodeLengths : Decremented (--a) integer local variable number 7 → SURVIVED
49. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
50. hbMakeCodeLengths : Negated integer local variable number 12 → KILLED
51. hbMakeCodeLengths : Negated integer local variable number 14 → KILLED
                    | (1 + (((weight[n1] & 0x000000ff)
164
                             > (weight[n2] & 0x000000ff))
165 21 1. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
2. hbMakeCodeLengths : Replaced bitwise AND with OR → SURVIVED
3. hbMakeCodeLengths : Negated integer array field → SURVIVED
4. hbMakeCodeLengths : Substituted 255 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted 255 with 0 → SURVIVED
6. hbMakeCodeLengths : Substituted 255 with -1 → SURVIVED
7. hbMakeCodeLengths : Substituted 255 with -255 → SURVIVED
8. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
9. hbMakeCodeLengths : Substituted 255 with 254 → SURVIVED
10. hbMakeCodeLengths : Replaced integer and with or → SURVIVED
11. hbMakeCodeLengths : Replaced integer and by first member → SURVIVED
12. hbMakeCodeLengths : Replace integer and by second member → SURVIVED
13. hbMakeCodeLengths : Incremented (a++) integer local variable number 6 → SURVIVED
14. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
15. hbMakeCodeLengths : Decremented (a--) integer local variable number 6 → SURVIVED
16. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
17. hbMakeCodeLengths : Incremented (++a) integer local variable number 6 → SURVIVED
18. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
19. hbMakeCodeLengths : Decremented (--a) integer local variable number 6 → SURVIVED
20. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
21. hbMakeCodeLengths : Negated integer local variable number 12 → KILLED
                            ? (weight[n1] & 0x000000ff)
166 32 1. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
2. hbMakeCodeLengths : Replaced bitwise AND with OR → SURVIVED
3. hbMakeCodeLengths : Replaced integer addition with subtraction → SURVIVED
4. hbMakeCodeLengths : Replaced bitwise OR with AND → SURVIVED
5. hbMakeCodeLengths : Negated integer array field → SURVIVED
6. hbMakeCodeLengths : Replaced integer operation with first member → SURVIVED
7. hbMakeCodeLengths : Replaced integer operation by second member → SURVIVED
8. hbMakeCodeLengths : Replaced integer addition with subtraction → SURVIVED
9. hbMakeCodeLengths : Replaced integer addition with multiplication → SURVIVED
10. hbMakeCodeLengths : Substituted 255 with 1 → SURVIVED
11. hbMakeCodeLengths : Substituted 255 with 0 → SURVIVED
12. hbMakeCodeLengths : Substituted 255 with -1 → SURVIVED
13. hbMakeCodeLengths : Substituted 255 with -255 → SURVIVED
14. hbMakeCodeLengths : Substituted 255 with 256 → SURVIVED
15. hbMakeCodeLengths : Substituted 255 with 254 → SURVIVED
16. hbMakeCodeLengths : Replaced integer and with or → SURVIVED
17. hbMakeCodeLengths : Replaced integer or with and → SURVIVED
18. hbMakeCodeLengths : Replaced integer and by first member → SURVIVED
19. hbMakeCodeLengths : Replaced integer or by first member → SURVIVED
20. hbMakeCodeLengths : Replace integer and by second member → SURVIVED
21. hbMakeCodeLengths : Replace integer or by second member → SURVIVED
22. hbMakeCodeLengths : Incremented (a++) integer local variable number 7 → SURVIVED
23. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
24. hbMakeCodeLengths : Decremented (a--) integer local variable number 7 → SURVIVED
25. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
26. hbMakeCodeLengths : Incremented (++a) integer local variable number 7 → SURVIVED
27. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
28. hbMakeCodeLengths : Decremented (--a) integer local variable number 7 → SURVIVED
29. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
30. hbMakeCodeLengths : Negated integer local variable number 14 → KILLED
31. hbMakeCodeLengths : Replaced integer addition with division → KILLED
32. hbMakeCodeLengths : Replaced integer addition with modulus → KILLED
                            : (weight[n2] & 0x000000ff)));
167
168 11 1. hbMakeCodeLengths : Substituted -1 with 0 → SURVIVED
2. hbMakeCodeLengths : Substituted -1 with 0 → SURVIVED
3. hbMakeCodeLengths : Substituted -1 with 0 → SURVIVED
4. hbMakeCodeLengths : Substituted -1 with -2 → SURVIVED
5. hbMakeCodeLengths : Incremented (a++) integer local variable number 4 → SURVIVED
6. hbMakeCodeLengths : Decremented (a--) integer local variable number 4 → SURVIVED
7. hbMakeCodeLengths : Incremented (++a) integer local variable number 4 → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer local variable number 4 → SURVIVED
9. hbMakeCodeLengths : Substituted -1 with 1 → TIMED_OUT
10. hbMakeCodeLengths : Substituted -1 with 1 → TIMED_OUT
11. hbMakeCodeLengths : Negated integer local variable number 8 → KILLED
                parent[nNodes] = -1;
169 2 1. hbMakeCodeLengths : Changed increment from 1 to -1 → SURVIVED
2. hbMakeCodeLengths : Removed increment 1 → SURVIVED
                nHeap++;
170 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 4 → SURVIVED
2. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 4 → SURVIVED
4. hbMakeCodeLengths : Incremented (++a) integer local variable number 4 → SURVIVED
5. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
6. hbMakeCodeLengths : Decremented (--a) integer local variable number 4 → SURVIVED
7. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → TIMED_OUT
8. hbMakeCodeLengths : Negated integer local variable number 9 → KILLED
9. hbMakeCodeLengths : Negated integer local variable number 8 → KILLED
10. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → KILLED
                heap[nHeap] = nNodes;
171
                {
172 10 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
4. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
6. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
7. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
8. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
9. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
10. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
                    int zz = 0, tmp = 0;
173 5 1. hbMakeCodeLengths : Decremented (a--) integer local variable number 5 → SURVIVED
2. hbMakeCodeLengths : Decremented (--a) integer local variable number 5 → SURVIVED
3. hbMakeCodeLengths : Negated integer local variable number 9 → KILLED
4. hbMakeCodeLengths : Incremented (a++) integer local variable number 5 → KILLED
5. hbMakeCodeLengths : Incremented (++a) integer local variable number 5 → KILLED
                    zz = nHeap;
174 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer array field → KILLED
                    tmp = heap[zz];
175 41 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
3. hbMakeCodeLengths : Replaced Shift Right with Shift Left → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
5. hbMakeCodeLengths : Negated integer array field → SURVIVED
6. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
7. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
8. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
9. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
10. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
11. hbMakeCodeLengths : greater or equal to greater than → SURVIVED
12. hbMakeCodeLengths : greater or equal to not equal → SURVIVED
13. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
14. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
15. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
16. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
17. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
18. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → SURVIVED
19. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
20. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
21. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
22. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
23. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
24. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
25. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
26. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
27. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → SURVIVED
28. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
29. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
30. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
31. hbMakeCodeLengths : negated conditional → TIMED_OUT
32. hbMakeCodeLengths : removed conditional - replaced comparison check with true → TIMED_OUT
33. hbMakeCodeLengths : Negated integer array field → TIMED_OUT
34. hbMakeCodeLengths : greater or equal to less than → TIMED_OUT
35. hbMakeCodeLengths : greater or equal to less or equal → TIMED_OUT
36. hbMakeCodeLengths : greater or equal to equal → TIMED_OUT
37. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
38. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
39. hbMakeCodeLengths : Negated integer array field → KILLED
40. hbMakeCodeLengths : Decremented (a--) integer array field → KILLED
41. hbMakeCodeLengths : Decremented (--a) integer array field → KILLED
                    while (weight[tmp] < weight[heap[zz >> 1]]) {
176 22 1. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
2. hbMakeCodeLengths : Replaced Shift Right with Shift Left → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
4. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
5. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
6. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
7. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
8. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
9. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
10. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
11. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
12. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
13. hbMakeCodeLengths : Decremented (a--) integer array field → SURVIVED
14. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
15. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
16. hbMakeCodeLengths : Incremented (++a) integer array field → SURVIVED
17. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
18. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
19. hbMakeCodeLengths : Decremented (--a) integer array field → SURVIVED
20. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
21. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
22. hbMakeCodeLengths : Negated integer array field → KILLED
                        heap[zz] = heap[zz >> 1];
177 12 1. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
2. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
3. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
4. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
5. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
8. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
9. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
10. hbMakeCodeLengths : Substituted 1 with 0 → TIMED_OUT
11. hbMakeCodeLengths : Replaced Shift Right with Shift Left → KILLED
12. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
                        zz >>= 1;
178
                    }
179 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 15 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer local variable number 16 → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 15 → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer local variable number 16 → SURVIVED
5. hbMakeCodeLengths : Incremented (++a) integer local variable number 15 → SURVIVED
6. hbMakeCodeLengths : Incremented (++a) integer local variable number 16 → SURVIVED
7. hbMakeCodeLengths : Decremented (--a) integer local variable number 15 → SURVIVED
8. hbMakeCodeLengths : Decremented (--a) integer local variable number 16 → SURVIVED
9. hbMakeCodeLengths : Negated integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Negated integer local variable number 11 → KILLED
                    heap[zz] = tmp;
180
                }
181
            }
182 21 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : Substituted 516 with 517 → SURVIVED
3. hbMakeCodeLengths : negated conditional → SURVIVED
4. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
5. hbMakeCodeLengths : removed conditional - replaced comparison check with true → SURVIVED
6. hbMakeCodeLengths : Negated integer local variable number 8 → SURVIVED
7. hbMakeCodeLengths : Substituted 516 with 1 → SURVIVED
8. hbMakeCodeLengths : Substituted 516 with 0 → SURVIVED
9. hbMakeCodeLengths : Substituted 516 with -1 → SURVIVED
10. hbMakeCodeLengths : Substituted 516 with -516 → SURVIVED
11. hbMakeCodeLengths : Substituted 516 with 517 → SURVIVED
12. hbMakeCodeLengths : Substituted 516 with 515 → SURVIVED
13. hbMakeCodeLengths : Less than to less or equal → SURVIVED
14. hbMakeCodeLengths : Less than to greater than → SURVIVED
15. hbMakeCodeLengths : Less than to greater or equal → SURVIVED
16. hbMakeCodeLengths : Less than to equal → SURVIVED
17. hbMakeCodeLengths : Less than to not equal → SURVIVED
18. hbMakeCodeLengths : Incremented (a++) integer local variable number 4 → SURVIVED
19. hbMakeCodeLengths : Decremented (a--) integer local variable number 4 → SURVIVED
20. hbMakeCodeLengths : Incremented (++a) integer local variable number 4 → SURVIVED
21. hbMakeCodeLengths : Decremented (--a) integer local variable number 4 → SURVIVED
            if (!(nNodes < (MAX_ALPHA_SIZE * 2))) {
183 1 1. hbMakeCodeLengths : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
                panic();
184
            }
185
186 5 1. hbMakeCodeLengths : Substituted 0 with 1 → TIMED_OUT
2. hbMakeCodeLengths : Substituted 0 with 1 → TIMED_OUT
3. hbMakeCodeLengths : Substituted 0 with -1 → TIMED_OUT
4. hbMakeCodeLengths : Substituted 0 with 1 → TIMED_OUT
5. hbMakeCodeLengths : Substituted 0 with -1 → TIMED_OUT
            tooLong = false;
187 27 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : negated conditional → SURVIVED
3. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
4. hbMakeCodeLengths : Negated integer local variable number 2 → SURVIVED
5. hbMakeCodeLengths : Substituted 1 with 2 → SURVIVED
6. hbMakeCodeLengths : greater than to less than → SURVIVED
7. hbMakeCodeLengths : greater than to less or equal → SURVIVED
8. hbMakeCodeLengths : greater than to greater or equal → SURVIVED
9. hbMakeCodeLengths : greater than to equal → SURVIVED
10. hbMakeCodeLengths : greater than to not equal → SURVIVED
11. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
12. hbMakeCodeLengths : Decremented (a--) integer local variable number 2 → SURVIVED
13. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
14. hbMakeCodeLengths : Decremented (--a) integer local variable number 2 → SURVIVED
15. hbMakeCodeLengths : Removed increment 1 → TIMED_OUT
16. hbMakeCodeLengths : Changed increment from 1 to -1 → KILLED
17. hbMakeCodeLengths : Substituted 1 with 0 → KILLED
18. hbMakeCodeLengths : removed conditional - replaced comparison check with true → KILLED
19. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
20. hbMakeCodeLengths : Substituted 1 with 0 → KILLED
21. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
22. hbMakeCodeLengths : Substituted 1 with -1 → KILLED
23. hbMakeCodeLengths : Substituted 1 with 0 → KILLED
24. hbMakeCodeLengths : Incremented (a++) integer local variable number 2 → KILLED
25. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → KILLED
26. hbMakeCodeLengths : Incremented (++a) integer local variable number 2 → KILLED
27. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
            for (i = 1; i <= alphaSize; i++) {
188 5 1. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
2. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
3. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
4. hbMakeCodeLengths : Substituted 0 with 1 → SURVIVED
5. hbMakeCodeLengths : Substituted 0 with -1 → SURVIVED
                j = 0;
189 5 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
2. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
3. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
4. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → KILLED
5. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
                k = i;
190 19 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : negated conditional → SURVIVED
3. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
4. hbMakeCodeLengths : Negated integer array field → SURVIVED
5. hbMakeCodeLengths : Less than to less or equal → SURVIVED
6. hbMakeCodeLengths : Less than to greater than → SURVIVED
7. hbMakeCodeLengths : Less than to greater or equal → SURVIVED
8. hbMakeCodeLengths : Less than to not equal → SURVIVED
9. hbMakeCodeLengths : Incremented (++a) integer local variable number 10 → TIMED_OUT
10. hbMakeCodeLengths : Decremented (--a) integer local variable number 10 → TIMED_OUT
11. hbMakeCodeLengths : Decremented (--a) integer array field → TIMED_OUT
12. hbMakeCodeLengths : removed conditional - replaced comparison check with true → KILLED
13. hbMakeCodeLengths : Negated integer local variable number 17 → KILLED
14. hbMakeCodeLengths : Less than to equal → KILLED
15. hbMakeCodeLengths : Incremented (a++) integer local variable number 10 → KILLED
16. hbMakeCodeLengths : Incremented (a++) integer array field → KILLED
17. hbMakeCodeLengths : Decremented (a--) integer local variable number 10 → KILLED
18. hbMakeCodeLengths : Decremented (a--) integer array field → KILLED
19. hbMakeCodeLengths : Incremented (++a) integer array field → KILLED
                while (parent[k] >= 0) {
191 10 1. hbMakeCodeLengths : Incremented (a++) integer local variable number 10 → SURVIVED
2. hbMakeCodeLengths : Incremented (a++) integer array field → SURVIVED
3. hbMakeCodeLengths : Decremented (a--) integer local variable number 10 → SURVIVED
4. hbMakeCodeLengths : Decremented (a--) integer array field → TIMED_OUT
5. hbMakeCodeLengths : Negated integer local variable number 17 → KILLED
6. hbMakeCodeLengths : Negated integer array field → KILLED
7. hbMakeCodeLengths : Incremented (++a) integer local variable number 10 → KILLED
8. hbMakeCodeLengths : Incremented (++a) integer array field → KILLED
9. hbMakeCodeLengths : Decremented (--a) integer local variable number 10 → KILLED
10. hbMakeCodeLengths : Decremented (--a) integer array field → KILLED
                    k = parent[k];
192 2 1. hbMakeCodeLengths : Changed increment from 1 to -1 → SURVIVED
2. hbMakeCodeLengths : Removed increment 1 → SURVIVED
                    j++;
193
                }
194 23 1. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
2. hbMakeCodeLengths : Replaced integer subtraction with addition → SURVIVED
3. hbMakeCodeLengths : Negated integer local variable number 16 → SURVIVED
4. hbMakeCodeLengths : Replaced integer operation with first member → SURVIVED
5. hbMakeCodeLengths : Replaced integer operation by second member → SURVIVED
6. hbMakeCodeLengths : Replaced integer subtraction with addition → SURVIVED
7. hbMakeCodeLengths : Replaced integer subtraction with multiplication → SURVIVED
8. hbMakeCodeLengths : Replaced integer subtraction with division → SURVIVED
9. hbMakeCodeLengths : Replaced integer subtraction with modulus → SURVIVED
10. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
11. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
12. hbMakeCodeLengths : Substituted 1 with -1 → SURVIVED
13. hbMakeCodeLengths : Substituted 1 with 0 → SURVIVED
14. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → SURVIVED
15. hbMakeCodeLengths : Incremented (a++) integer local variable number 9 → SURVIVED
16. hbMakeCodeLengths : Decremented (a--) integer local variable number 9 → SURVIVED
17. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → SURVIVED
18. hbMakeCodeLengths : Incremented (++a) integer local variable number 9 → SURVIVED
19. hbMakeCodeLengths : Decremented (--a) integer local variable number 9 → SURVIVED
20. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → TIMED_OUT
21. hbMakeCodeLengths : Negated integer local variable number 7 → KILLED
22. hbMakeCodeLengths : Substituted 1 with 2 → KILLED
23. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → KILLED
                len[i - 1] = (char) j;
195 19 1. hbMakeCodeLengths : changed conditional boundary → SURVIVED
2. hbMakeCodeLengths : removed conditional - replaced comparison check with false → SURVIVED
3. hbMakeCodeLengths : Negated integer local variable number 16 → SURVIVED
4. hbMakeCodeLengths : Less or equal to less than → SURVIVED
5. hbMakeCodeLengths : Less or equal to not equal → SURVIVED
6. hbMakeCodeLengths : Incremented (a++) integer local variable number 9 → SURVIVED
7. hbMakeCodeLengths : Incremented (a++) integer local variable number 3 → SURVIVED
8. hbMakeCodeLengths : Decremented (a--) integer local variable number 9 → SURVIVED
9. hbMakeCodeLengths : Decremented (a--) integer local variable number 3 → SURVIVED
10. hbMakeCodeLengths : Incremented (++a) integer local variable number 9 → SURVIVED
11. hbMakeCodeLengths : Incremented (++a) integer local variable number 3 → SURVIVED
12. hbMakeCodeLengths : Decremented (--a) integer local variable number 9 → SURVIVED
13. hbMakeCodeLengths : Decremented (--a) integer local variable number 3 → SURVIVED
14. hbMakeCodeLengths : negated conditional → TIMED_OUT
15. hbMakeCodeLengths : removed conditional - replaced comparison check with true → TIMED_OUT
16. hbMakeCodeLengths : Negated integer local variable number 3 → TIMED_OUT
17. hbMakeCodeLengths : Less or equal to greater than → TIMED_OUT
18. hbMakeCodeLengths : Less or equal to greater or equal → TIMED_OUT
19. hbMakeCodeLengths : Less or equal to equal → TIMED_OUT
                if (j > maxLen) {
196 6 1. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
2. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
3. hbMakeCodeLengths : Substituted 1 with -1 → NO_COVERAGE
4. hbMakeCodeLengths : Substituted 1 with -1 → NO_COVERAGE
5. hbMakeCodeLengths : Substituted 1 with 2 → NO_COVERAGE
6. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
                    tooLong = true;
197
                }
198
            }
199
200 13 1. hbMakeCodeLengths : removed conditional - replaced equality check with true → SURVIVED
2. hbMakeCodeLengths : Negated integer local variable number 15 → SURVIVED
3. hbMakeCodeLengths : not equal to less than → SURVIVED
4. hbMakeCodeLengths : not equal to greater than → SURVIVED
5. hbMakeCodeLengths : Incremented (a++) integer local variable number 11 → SURVIVED
6. hbMakeCodeLengths : Decremented (a--) integer local variable number 11 → SURVIVED
7. hbMakeCodeLengths : negated conditional → TIMED_OUT
8. hbMakeCodeLengths : removed conditional - replaced equality check with false → TIMED_OUT
9. hbMakeCodeLengths : not equal to less or equal → TIMED_OUT
10. hbMakeCodeLengths : not equal to greater or equal → TIMED_OUT
11. hbMakeCodeLengths : not equal to equal → TIMED_OUT
12. hbMakeCodeLengths : Incremented (++a) integer local variable number 11 → TIMED_OUT
13. hbMakeCodeLengths : Decremented (--a) integer local variable number 11 → TIMED_OUT
            if (!tooLong) {
201
                break;
202
            }
203
204 26 1. hbMakeCodeLengths : changed conditional boundary → NO_COVERAGE
2. hbMakeCodeLengths : Changed increment from 1 to -1 → NO_COVERAGE
3. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
4. hbMakeCodeLengths : negated conditional → NO_COVERAGE
5. hbMakeCodeLengths : removed conditional - replaced comparison check with false → NO_COVERAGE
6. hbMakeCodeLengths : removed conditional - replaced comparison check with true → NO_COVERAGE
7. hbMakeCodeLengths : Negated integer local variable number 7 → NO_COVERAGE
8. hbMakeCodeLengths : Negated integer local variable number 2 → NO_COVERAGE
9. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
10. hbMakeCodeLengths : Substituted 1 with -1 → NO_COVERAGE
11. hbMakeCodeLengths : Substituted 1 with -1 → NO_COVERAGE
12. hbMakeCodeLengths : Substituted 1 with 2 → NO_COVERAGE
13. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
14. hbMakeCodeLengths : greater or equal to less than → NO_COVERAGE
15. hbMakeCodeLengths : greater or equal to less or equal → NO_COVERAGE
16. hbMakeCodeLengths : greater or equal to greater than → NO_COVERAGE
17. hbMakeCodeLengths : greater or equal to equal → NO_COVERAGE
18. hbMakeCodeLengths : greater or equal to not equal → NO_COVERAGE
19. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → NO_COVERAGE
20. hbMakeCodeLengths : Incremented (a++) integer local variable number 2 → NO_COVERAGE
21. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → NO_COVERAGE
22. hbMakeCodeLengths : Decremented (a--) integer local variable number 2 → NO_COVERAGE
23. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → NO_COVERAGE
24. hbMakeCodeLengths : Incremented (++a) integer local variable number 2 → NO_COVERAGE
25. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → NO_COVERAGE
26. hbMakeCodeLengths : Decremented (--a) integer local variable number 2 → NO_COVERAGE
            for (i = 1; i < alphaSize; i++) {
205 18 1. hbMakeCodeLengths : Substituted 8 with 9 → NO_COVERAGE
2. hbMakeCodeLengths : Replaced Shift Right with Shift Left → NO_COVERAGE
3. hbMakeCodeLengths : Negated integer local variable number 7 → NO_COVERAGE
4. hbMakeCodeLengths : Negated integer array field → NO_COVERAGE
5. hbMakeCodeLengths : Substituted 8 with 1 → NO_COVERAGE
6. hbMakeCodeLengths : Substituted 8 with 0 → NO_COVERAGE
7. hbMakeCodeLengths : Substituted 8 with -1 → NO_COVERAGE
8. hbMakeCodeLengths : Substituted 8 with -8 → NO_COVERAGE
9. hbMakeCodeLengths : Substituted 8 with 9 → NO_COVERAGE
10. hbMakeCodeLengths : Substituted 8 with 7 → NO_COVERAGE
11. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → NO_COVERAGE
12. hbMakeCodeLengths : Incremented (a++) integer array field → NO_COVERAGE
13. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → NO_COVERAGE
14. hbMakeCodeLengths : Decremented (a--) integer array field → NO_COVERAGE
15. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → NO_COVERAGE
16. hbMakeCodeLengths : Incremented (++a) integer array field → NO_COVERAGE
17. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → NO_COVERAGE
18. hbMakeCodeLengths : Decremented (--a) integer array field → NO_COVERAGE
                j = weight[i] >> 8;
206 32 1. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
2. hbMakeCodeLengths : Substituted 2 with 3 → NO_COVERAGE
3. hbMakeCodeLengths : Replaced integer division with multiplication → NO_COVERAGE
4. hbMakeCodeLengths : Replaced integer addition with subtraction → NO_COVERAGE
5. hbMakeCodeLengths : Negated integer local variable number 16 → NO_COVERAGE
6. hbMakeCodeLengths : Replaced integer operation with first member → NO_COVERAGE
7. hbMakeCodeLengths : Replaced integer operation with first member → NO_COVERAGE
8. hbMakeCodeLengths : Replaced integer operation by second member → NO_COVERAGE
9. hbMakeCodeLengths : Replaced integer operation by second member → NO_COVERAGE
10. hbMakeCodeLengths : Replaced integer division with multiplication → NO_COVERAGE
11. hbMakeCodeLengths : Replaced integer addition with subtraction → NO_COVERAGE
12. hbMakeCodeLengths : Replaced integer division with modulus → NO_COVERAGE
13. hbMakeCodeLengths : Replaced integer addition with multiplication → NO_COVERAGE
14. hbMakeCodeLengths : Replaced integer division with addition → NO_COVERAGE
15. hbMakeCodeLengths : Replaced integer addition with division → NO_COVERAGE
16. hbMakeCodeLengths : Replaced integer division with subtraction → NO_COVERAGE
17. hbMakeCodeLengths : Replaced integer addition with modulus → NO_COVERAGE
18. hbMakeCodeLengths : Substituted 2 with 1 → NO_COVERAGE
19. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
20. hbMakeCodeLengths : Substituted 2 with 0 → NO_COVERAGE
21. hbMakeCodeLengths : Substituted 1 with -1 → NO_COVERAGE
22. hbMakeCodeLengths : Substituted 2 with -1 → NO_COVERAGE
23. hbMakeCodeLengths : Substituted 1 with -1 → NO_COVERAGE
24. hbMakeCodeLengths : Substituted 2 with -2 → NO_COVERAGE
25. hbMakeCodeLengths : Substituted 1 with 2 → NO_COVERAGE
26. hbMakeCodeLengths : Substituted 2 with 3 → NO_COVERAGE
27. hbMakeCodeLengths : Substituted 1 with 0 → NO_COVERAGE
28. hbMakeCodeLengths : Substituted 2 with 1 → NO_COVERAGE
29. hbMakeCodeLengths : Incremented (a++) integer local variable number 9 → NO_COVERAGE
30. hbMakeCodeLengths : Decremented (a--) integer local variable number 9 → NO_COVERAGE
31. hbMakeCodeLengths : Incremented (++a) integer local variable number 9 → NO_COVERAGE
32. hbMakeCodeLengths : Decremented (--a) integer local variable number 9 → NO_COVERAGE
                j = 1 + (j / 2);
207 18 1. hbMakeCodeLengths : Substituted 8 with 9 → NO_COVERAGE
2. hbMakeCodeLengths : Replaced Shift Left with Shift Right → NO_COVERAGE
3. hbMakeCodeLengths : Negated integer local variable number 7 → NO_COVERAGE
4. hbMakeCodeLengths : Negated integer local variable number 16 → NO_COVERAGE
5. hbMakeCodeLengths : Substituted 8 with 1 → NO_COVERAGE
6. hbMakeCodeLengths : Substituted 8 with 0 → NO_COVERAGE
7. hbMakeCodeLengths : Substituted 8 with -1 → NO_COVERAGE
8. hbMakeCodeLengths : Substituted 8 with -8 → NO_COVERAGE
9. hbMakeCodeLengths : Substituted 8 with 9 → NO_COVERAGE
10. hbMakeCodeLengths : Substituted 8 with 7 → NO_COVERAGE
11. hbMakeCodeLengths : Incremented (a++) integer local variable number 8 → NO_COVERAGE
12. hbMakeCodeLengths : Incremented (a++) integer local variable number 9 → NO_COVERAGE
13. hbMakeCodeLengths : Decremented (a--) integer local variable number 8 → NO_COVERAGE
14. hbMakeCodeLengths : Decremented (a--) integer local variable number 9 → NO_COVERAGE
15. hbMakeCodeLengths : Incremented (++a) integer local variable number 8 → NO_COVERAGE
16. hbMakeCodeLengths : Incremented (++a) integer local variable number 9 → NO_COVERAGE
17. hbMakeCodeLengths : Decremented (--a) integer local variable number 8 → NO_COVERAGE
18. hbMakeCodeLengths : Decremented (--a) integer local variable number 9 → NO_COVERAGE
                weight[i] = j << 8;
208
            }
209
        }
210
    }
211
212
    /*
213
      index of the last char in the block, so
214
      the block size == last + 1.
215
    */
216
    private int last;
217
218
    /*
219
      index in zptr[] of original string after sorting.
220
    */
221
    private int origPtr;
222
223
    /*
224
      always: in the range 0 .. 9.
225
      The current block size is 100000 * this number.
226
    */
227
    private int blockSize100k;
228
229
    private boolean blockRandomised;
230
231
    private int bytesOut;
232
    private int bsBuff;
233
    private int bsLive;
234 2 1. <init> : removed call to org/apache/commons/compress/compressors/bzip2/CRC::<init> → KILLED
2. <init> : Removed assignment to member variable mCrc → KILLED
    private final CRC mCrc = new CRC();
235
236 8 1. <init> : Substituted 256 with 257 → SURVIVED
2. <init> : Substituted 256 with 257 → SURVIVED
3. <init> : Removed assignment to member variable inUse → KILLED
4. <init> : Substituted 256 with 1 → KILLED
5. <init> : Substituted 256 with 0 → KILLED
6. <init> : Substituted 256 with -1 → KILLED
7. <init> : Substituted 256 with -256 → KILLED
8. <init> : Substituted 256 with 255 → KILLED
    private boolean[] inUse = new boolean[256];
237
    private int nInUse;
238
239 8 1. <init> : Substituted 256 with 257 → SURVIVED
2. <init> : Substituted 256 with 257 → SURVIVED
3. <init> : Substituted 256 with 255 → SURVIVED
4. <init> : Removed assignment to member variable seqToUnseq → KILLED
5. <init> : Substituted 256 with 1 → KILLED
6. <init> : Substituted 256 with 0 → KILLED
7. <init> : Substituted 256 with -1 → KILLED
8. <init> : Substituted 256 with -256 → KILLED
    private char[] seqToUnseq = new char[256];
240 8 1. <init> : Substituted 256 with 257 → SURVIVED
2. <init> : Substituted 256 with 257 → SURVIVED
3. <init> : Substituted 256 with 255 → SURVIVED
4. <init> : Removed assignment to member variable unseqToSeq → KILLED
5. <init> : Substituted 256 with 1 → KILLED
6. <init> : Substituted 256 with 0 → KILLED
7. <init> : Substituted 256 with -1 → KILLED
8. <init> : Substituted 256 with -256 → KILLED
    private char[] unseqToSeq = new char[256];
241
242 8 1. <init> : Substituted 18002 with 18003 → SURVIVED
2. <init> : Substituted 18002 with 1 → SURVIVED
3. <init> : Substituted 18002 with 18003 → SURVIVED
4. <init> : Substituted 18002 with 18001 → SURVIVED
5. <init> : Removed assignment to member variable selector → KILLED
6. <init> : Substituted 18002 with 0 → KILLED
7. <init> : Substituted 18002 with -1 → KILLED
8. <init> : Substituted 18002 with -18002 → KILLED
    private char[] selector = new char[MAX_SELECTORS];
243 8 1. <init> : Substituted 18002 with 18003 → SURVIVED
2. <init> : Substituted 18002 with 1 → SURVIVED
3. <init> : Substituted 18002 with 18003 → SURVIVED
4. <init> : Substituted 18002 with 18001 → SURVIVED
5. <init> : Removed assignment to member variable selectorMtf → KILLED
6. <init> : Substituted 18002 with 0 → KILLED
7. <init> : Substituted 18002 with -1 → KILLED
8. <init> : Substituted 18002 with -18002 → KILLED
    private char[] selectorMtf = new char[MAX_SELECTORS];
244
245
    private char[] block;
246
    private int[] quadrant;
247
    private int[] zptr;
248
    private short[] szptr;
249
    private int[] ftab;
250
251
    private int nMTF;
252
253 8 1. <init> : Substituted 258 with 259 → SURVIVED
2. <init> : Substituted 258 with 259 → SURVIVED
3. <init> : Substituted 258 with 257 → SURVIVED
4. <init> : Removed assignment to member variable mtfFreq → KILLED
5. <init> : Substituted 258 with 1 → KILLED
6. <init> : Substituted 258 with 0 → KILLED
7. <init> : Substituted 258 with -1 → KILLED
8. <init> : Substituted 258 with -258 → KILLED
    private int[] mtfFreq = new int[MAX_ALPHA_SIZE];
254
255
    /*
256
     * Used when sorting.  If too many long comparisons
257
     * happen, we stop sorting, randomise the block
258
     * slightly, and try again.
259
     */
260
    private int workFactor;
261
    private int workDone;
262
    private int workLimit;
263
    private boolean firstAttempt;
264
    private int nBlocksRandomised;
265
266 7 1. <init> : Substituted -1 with 0 → KILLED
2. <init> : Removed assignment to member variable currentChar → KILLED
3. <init> : Substituted -1 with 1 → KILLED
4. <init> : Substituted -1 with 0 → KILLED
5. <init> : Substituted -1 with 1 → KILLED
6. <init> : Substituted -1 with 0 → KILLED
7. <init> : Substituted -1 with -2 → KILLED
    private int currentChar = -1;
267 6 1. <init> : Substituted 0 with 1 → SURVIVED
2. <init> : Removed assignment to member variable runLength → SURVIVED
3. <init> : Substituted 0 with 1 → SURVIVED
4. <init> : Substituted 0 with -1 → SURVIVED
5. <init> : Substituted 0 with 1 → SURVIVED
6. <init> : Substituted 0 with -1 → SURVIVED
    private int runLength = 0;
268
269
    public BZip2CompressorOutputStream(OutputStream inStream) throws IOException {
270 7 1. <init> : Substituted 9 with 10 → SURVIVED
2. <init> : Substituted 9 with 1 → SURVIVED
3. <init> : Substituted 9 with 0 → SURVIVED
4. <init> : Substituted 9 with -1 → SURVIVED
5. <init> : Substituted 9 with -9 → SURVIVED
6. <init> : Substituted 9 with 10 → SURVIVED
7. <init> : Substituted 9 with 8 → SURVIVED
        this(inStream, 9);
271
    }
272
273
    public BZip2CompressorOutputStream(OutputStream inStream, int inBlockSize)
274
        throws IOException {
275 1 1. <init> : Removed assignment to member variable block → SURVIVED
        block = null;
276 1 1. <init> : Removed assignment to member variable quadrant → SURVIVED
        quadrant = null;
277 1 1. <init> : Removed assignment to member variable zptr → SURVIVED
        zptr = null;
278 1 1. <init> : Removed assignment to member variable ftab → SURVIVED
        ftab = null;
279
280 1 1. <init> : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsSetStream → KILLED
        bsSetStream(inStream);
281
282 8 1. <init> : Substituted 50 with 51 → SURVIVED
2. <init> : Removed assignment to member variable workFactor → SURVIVED
3. <init> : Substituted 50 with 1 → SURVIVED
4. <init> : Substituted 50 with 0 → SURVIVED
5. <init> : Substituted 50 with -1 → SURVIVED
6. <init> : Substituted 50 with -50 → SURVIVED
7. <init> : Substituted 50 with 51 → SURVIVED
8. <init> : Substituted 50 with 49 → SURVIVED
        workFactor = 50;
283 21 1. <init> : changed conditional boundary → SURVIVED
2. <init> : Substituted 9 with 10 → SURVIVED
3. <init> : negated conditional → SURVIVED
4. <init> : removed conditional - replaced comparison check with false → SURVIVED
5. <init> : removed conditional - replaced comparison check with true → SURVIVED
6. <init> : Negated integer local variable number 2 → SURVIVED
7. <init> : Substituted 9 with 1 → SURVIVED
8. <init> : Substituted 9 with 0 → SURVIVED
9. <init> : Substituted 9 with -1 → SURVIVED
10. <init> : Substituted 9 with -9 → SURVIVED
11. <init> : Substituted 9 with 10 → SURVIVED
12. <init> : Substituted 9 with 8 → SURVIVED
13. <init> : Less or equal to less than → SURVIVED
14. <init> : Less or equal to greater than → SURVIVED
15. <init> : Less or equal to greater or equal → SURVIVED
16. <init> : Less or equal to equal → SURVIVED
17. <init> : Less or equal to not equal → SURVIVED
18. <init> : Incremented (a++) integer local variable number 2 → SURVIVED
19. <init> : Decremented (a--) integer local variable number 2 → SURVIVED
20. <init> : Incremented (++a) integer local variable number 2 → SURVIVED
21. <init> : Decremented (--a) integer local variable number 2 → SURVIVED
        if (inBlockSize > 9) {
284 7 1. <init> : Substituted 9 with 10 → NO_COVERAGE
2. <init> : Substituted 9 with 1 → NO_COVERAGE
3. <init> : Substituted 9 with 0 → NO_COVERAGE
4. <init> : Substituted 9 with -1 → NO_COVERAGE
5. <init> : Substituted 9 with -9 → NO_COVERAGE
6. <init> : Substituted 9 with 10 → NO_COVERAGE
7. <init> : Substituted 9 with 8 → NO_COVERAGE
            inBlockSize = 9;
285
        }
286 20 1. <init> : changed conditional boundary → SURVIVED
2. <init> : Substituted 1 with 0 → SURVIVED
3. <init> : negated conditional → SURVIVED
4. <init> : removed conditional - replaced comparison check with false → SURVIVED
5. <init> : removed conditional - replaced comparison check with true → SURVIVED
6. <init> : Negated integer local variable number 2 → SURVIVED
7. <init> : Substituted 1 with 0 → SURVIVED
8. <init> : Substituted 1 with -1 → SURVIVED
9. <init> : Substituted 1 with -1 → SURVIVED
10. <init> : Substituted 1 with 2 → SURVIVED
11. <init> : Substituted 1 with 0 → SURVIVED
12. <init> : greater or equal to less than → SURVIVED
13. <init> : greater or equal to less or equal → SURVIVED
14. <init> : greater or equal to greater than → SURVIVED
15. <init> : greater or equal to equal → SURVIVED
16. <init> : greater or equal to not equal → SURVIVED
17. <init> : Incremented (a++) integer local variable number 2 → SURVIVED
18. <init> : Decremented (a--) integer local variable number 2 → SURVIVED
19. <init> : Incremented (++a) integer local variable number 2 → SURVIVED
20. <init> : Decremented (--a) integer local variable number 2 → SURVIVED
        if (inBlockSize < 1) {
287 6 1. <init> : Substituted 1 with 0 → NO_COVERAGE
2. <init> : Substituted 1 with 0 → NO_COVERAGE
3. <init> : Substituted 1 with -1 → NO_COVERAGE
4. <init> : Substituted 1 with -1 → NO_COVERAGE
5. <init> : Substituted 1 with 2 → NO_COVERAGE
6. <init> : Substituted 1 with 0 → NO_COVERAGE
            inBlockSize = 1;
288
        }
289 6 1. <init> : Incremented (a++) integer local variable number 2 → SURVIVED
2. <init> : Decremented (a--) integer local variable number 2 → SURVIVED
3. <init> : Incremented (++a) integer local variable number 2 → SURVIVED
4. <init> : Decremented (--a) integer local variable number 2 → SURVIVED
5. <init> : Removed assignment to member variable blockSize100k → KILLED
6. <init> : Negated integer local variable number 2 → KILLED
        blockSize100k = inBlockSize;
290 1 1. <init> : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::allocateCompressStructures → KILLED
        allocateCompressStructures();
291 1 1. <init> : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::initialize → SURVIVED
        initialize();
292 1 1. <init> : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::initBlock → SURVIVED
        initBlock();
293
    }
294
295
    /**
296
     *
297
     * modified by Oliver Merkel, 010128
298
     *
299
     */
300
    public void write(int bv) throws IOException {
301 33 1. write : Substituted 256 with 257 → SURVIVED
2. write : Substituted 256 with 257 → SURVIVED
3. write : Replaced integer addition with subtraction → SURVIVED
4. write : Negated integer local variable number 1 → SURVIVED
5. write : Replaced integer operation with first member → SURVIVED
6. write : Replaced integer operation by second member → SURVIVED
7. write : Replaced integer addition with subtraction → SURVIVED
8. write : Replaced integer addition with multiplication → SURVIVED
9. write : Replaced integer modulus with division → SURVIVED
10. write : Replaced integer addition with division → SURVIVED
11. write : Replaced integer addition with modulus → SURVIVED
12. write : Replaced integer modulus with subtraction → SURVIVED
13. write : Substituted 256 with 1 → SURVIVED
14. write : Substituted 256 with 1 → SURVIVED
15. write : Substituted 256 with 0 → SURVIVED
16. write : Substituted 256 with -1 → SURVIVED
17. write : Substituted 256 with -1 → SURVIVED
18. write : Substituted 256 with -256 → SURVIVED
19. write : Substituted 256 with 257 → SURVIVED
20. write : Substituted 256 with 257 → SURVIVED
21. write : Substituted 256 with 255 → SURVIVED
22. write : Substituted 256 with 255 → SURVIVED
23. write : Incremented (a++) integer local variable number 1 → SURVIVED
24. write : Decremented (a--) integer local variable number 1 → SURVIVED
25. write : Incremented (++a) integer local variable number 1 → SURVIVED
26. write : Decremented (--a) integer local variable number 1 → SURVIVED
27. write : Replaced integer modulus with multiplication → KILLED
28. write : Replaced integer operation with first member → KILLED
29. write : Replaced integer operation by second member → KILLED
30. write : Replaced integer modulus with multiplication → KILLED
31. write : Replaced integer modulus with addition → KILLED
32. write : Substituted 256 with 0 → KILLED
33. write : Substituted 256 with -256 → KILLED
        int b = (256 + bv) % 256;
302 19 1. write : equal to less or equal → SURVIVED
2. write : Incremented (a++) integer field currentChar → SURVIVED
3. write : Decremented (a--) integer field currentChar → SURVIVED
4. write : Substituted -1 with 0 → KILLED
5. write : negated conditional → KILLED
6. write : removed conditional - replaced equality check with false → KILLED
7. write : removed conditional - replaced equality check with true → KILLED
8. write : Negated integer field currentChar → KILLED
9. write : Substituted -1 with 1 → KILLED
10. write : Substituted -1 with 0 → KILLED
11. write : Substituted -1 with 1 → KILLED
12. write : Substituted -1 with 0 → KILLED
13. write : Substituted -1 with -2 → KILLED
14. write : equal to less than → KILLED
15. write : equal to greater than → KILLED
16. write : equal to greater or equal → KILLED
17. write : equal to not equal → KILLED
18. write : Incremented (++a) integer field currentChar → KILLED
19. write : Decremented (--a) integer fieldcurrentChar → KILLED
        if (currentChar != -1) {
303 18 1. write : negated conditional → SURVIVED
2. write : removed conditional - replaced equality check with false → SURVIVED
3. write : removed conditional - replaced equality check with true → SURVIVED
4. write : Negated integer field currentChar → SURVIVED
5. write : Negated integer local variable number 2 → SURVIVED
6. write : not equal to less than → SURVIVED
7. write : not equal to less or equal → SURVIVED
8. write : not equal to greater than → SURVIVED
9. write : not equal to greater or equal → SURVIVED
10. write : not equal to equal → SURVIVED
11. write : Incremented (a++) integer field currentChar → SURVIVED
12. write : Incremented (a++) integer local variable number 2 → SURVIVED
13. write : Decremented (a--) integer field currentChar → SURVIVED
14. write : Decremented (a--) integer local variable number 2 → SURVIVED
15. write : Incremented (++a) integer field currentChar → SURVIVED
16. write : Incremented (++a) integer local variable number 2 → SURVIVED
17. write : Decremented (--a) integer fieldcurrentChar → SURVIVED
18. write : Decremented (--a) integer local variable number 2 → SURVIVED
            if (currentChar == b) {
304 19 1. write : Substituted 1 with 0 → SURVIVED
2. write : Removed assignment to member variable runLength → SURVIVED
3. write : Replaced integer operation with first member → SURVIVED
4. write : Replaced integer operation by second member → SURVIVED
5. write : Replaced integer addition with multiplication → SURVIVED
6. write : Replaced integer addition with division → SURVIVED
7. write : Substituted 1 with 0 → SURVIVED
8. write : Substituted 1 with 2 → SURVIVED
9. write : Substituted 1 with 0 → SURVIVED
10. write : Incremented (a++) integer field runLength → SURVIVED
11. write : Decremented (a--) integer field runLength → SURVIVED
12. write : Incremented (++a) integer field runLength → SURVIVED
13. write : Decremented (--a) integer fieldrunLength → SURVIVED
14. write : Replaced integer addition with subtraction → KILLED
15. write : Negated integer field runLength → KILLED
16. write : Replaced integer addition with subtraction → KILLED
17. write : Replaced integer addition with modulus → KILLED
18. write : Substituted 1 with -1 → KILLED
19. write : Substituted 1 with -1 → KILLED
                runLength++;
305 21 1. write : changed conditional boundary → SURVIVED
2. write : Substituted 254 with 255 → SURVIVED
3. write : negated conditional → SURVIVED
4. write : removed conditional - replaced comparison check with false → SURVIVED
5. write : removed conditional - replaced comparison check with true → SURVIVED
6. write : Negated integer field runLength → SURVIVED
7. write : Substituted 254 with 1 → SURVIVED
8. write : Substituted 254 with 0 → SURVIVED
9. write : Substituted 254 with -1 → SURVIVED
10. write : Substituted 254 with -254 → SURVIVED
11. write : Substituted 254 with 255 → SURVIVED
12. write : Substituted 254 with 253 → SURVIVED
13. write : Less or equal to less than → SURVIVED
14. write : Less or equal to greater than → SURVIVED
15. write : Less or equal to greater or equal → SURVIVED
16. write : Less or equal to equal → SURVIVED
17. write : Less or equal to not equal → SURVIVED
18. write : Incremented (a++) integer field runLength → SURVIVED
19. write : Decremented (a--) integer field runLength → SURVIVED
20. write : Incremented (++a) integer field runLength → SURVIVED
21. write : Decremented (--a) integer fieldrunLength → SURVIVED
                if (runLength > 254) {
306 1 1. write : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → NO_COVERAGE
                    writeRun();
307 7 1. write : Substituted -1 with 0 → NO_COVERAGE
2. write : Removed assignment to member variable currentChar → NO_COVERAGE
3. write : Substituted -1 with 1 → NO_COVERAGE
4. write : Substituted -1 with 0 → NO_COVERAGE
5. write : Substituted -1 with 1 → NO_COVERAGE
6. write : Substituted -1 with 0 → NO_COVERAGE
7. write : Substituted -1 with -2 → NO_COVERAGE
                    currentChar = -1;
308 6 1. write : Substituted 0 with 1 → NO_COVERAGE
2. write : Removed assignment to member variable runLength → NO_COVERAGE
3. write : Substituted 0 with 1 → NO_COVERAGE
4. write : Substituted 0 with -1 → NO_COVERAGE
5. write : Substituted 0 with 1 → NO_COVERAGE
6. write : Substituted 0 with -1 → NO_COVERAGE
                    runLength = 0;
309
                }
310
            } else {
311 1 1. write : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → SURVIVED
                writeRun();
312 7 1. write : Removed assignment to member variable runLength → SURVIVED
2. write : Substituted 1 with 2 → SURVIVED
3. write : Substituted 1 with 0 → KILLED
4. write : Substituted 1 with 0 → KILLED
5. write : Substituted 1 with -1 → KILLED
6. write : Substituted 1 with -1 → KILLED
7. write : Substituted 1 with 0 → KILLED
                runLength = 1;
313 6 1. write : Removed assignment to member variable currentChar → SURVIVED
2. write : Incremented (a++) integer local variable number 2 → SURVIVED
3. write : Decremented (a--) integer local variable number 2 → SURVIVED
4. write : Incremented (++a) integer local variable number 2 → SURVIVED
5. write : Decremented (--a) integer local variable number 2 → SURVIVED
6. write : Negated integer local variable number 2 → KILLED
                currentChar = b;
314
            }
315
        } else {
316 6 1. write : Incremented (a++) integer local variable number 2 → SURVIVED
2. write : Decremented (a--) integer local variable number 2 → SURVIVED
3. write : Incremented (++a) integer local variable number 2 → SURVIVED
4. write : Decremented (--a) integer local variable number 2 → SURVIVED
5. write : Removed assignment to member variable currentChar → KILLED
6. write : Negated integer local variable number 2 → KILLED
            currentChar = b;
317 19 1. write : Substituted 1 with 0 → SURVIVED
2. write : Replaced integer addition with subtraction → SURVIVED
3. write : Removed assignment to member variable runLength → SURVIVED
4. write : Negated integer field runLength → SURVIVED
5. write : Replaced integer operation with first member → SURVIVED
6. write : Replaced integer operation by second member → SURVIVED
7. write : Replaced integer addition with subtraction → SURVIVED
8. write : Replaced integer addition with multiplication → SURVIVED
9. write : Replaced integer addition with division → SURVIVED
10. write : Replaced integer addition with modulus → SURVIVED
11. write : Substituted 1 with 0 → SURVIVED
12. write : Substituted 1 with -1 → SURVIVED
13. write : Substituted 1 with -1 → SURVIVED
14. write : Substituted 1 with 2 → SURVIVED
15. write : Substituted 1 with 0 → SURVIVED
16. write : Incremented (a++) integer field runLength → SURVIVED
17. write : Decremented (a--) integer field runLength → SURVIVED
18. write : Incremented (++a) integer field runLength → SURVIVED
19. write : Decremented (--a) integer fieldrunLength → SURVIVED
            runLength++;
318
        }
319
    }
320
321
    private void writeRun() throws IOException {
322 19 1. writeRun : changed conditional boundary → SURVIVED
2. writeRun : removed conditional - replaced comparison check with true → SURVIVED
3. writeRun : Negated integer field last → SURVIVED
4. writeRun : greater or equal to greater than → SURVIVED
5. writeRun : greater or equal to equal → SURVIVED
6. writeRun : Incremented (a++) integer field last → SURVIVED
7. writeRun : Incremented (a++) integer field allowableBlockSize → SURVIVED
8. writeRun : Decremented (a--) integer field last → SURVIVED
9. writeRun : Decremented (a--) integer field allowableBlockSize → SURVIVED
10. writeRun : Incremented (++a) integer field last → SURVIVED
11. writeRun : Incremented (++a) integer field allowableBlockSize → SURVIVED
12. writeRun : Decremented (--a) integer fieldlast → SURVIVED
13. writeRun : Decremented (--a) integer fieldallowableBlockSize → SURVIVED
14. writeRun : negated conditional → KILLED
15. writeRun : removed conditional - replaced comparison check with false → KILLED
16. writeRun : Negated integer field allowableBlockSize → KILLED
17. writeRun : greater or equal to less than → KILLED
18. writeRun : greater or equal to less or equal → KILLED
19. writeRun : greater or equal to not equal → KILLED
        if (last < allowableBlockSize) {
323 11 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Substituted 1 with 0 → SURVIVED
3. writeRun : Substituted 1 with -1 → SURVIVED
4. writeRun : Substituted 1 with -1 → SURVIVED
5. writeRun : Substituted 1 with 2 → SURVIVED
6. writeRun : Substituted 1 with 0 → SURVIVED
7. writeRun : Incremented (a++) integer field currentChar → SURVIVED
8. writeRun : Decremented (a--) integer field currentChar → SURVIVED
9. writeRun : Incremented (++a) integer field currentChar → SURVIVED
10. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
11. writeRun : Negated integer field currentChar → KILLED
            inUse[currentChar] = true;
324 25 1. writeRun : changed conditional boundary → SURVIVED
2. writeRun : Substituted 0 with 1 → SURVIVED
3. writeRun : negated conditional → SURVIVED
4. writeRun : removed conditional - replaced comparison check with false → SURVIVED
5. writeRun : Negated integer field runLength → SURVIVED
6. writeRun : Substituted 0 with 1 → SURVIVED
7. writeRun : Substituted 0 with -1 → SURVIVED
8. writeRun : Substituted 0 with 1 → SURVIVED
9. writeRun : Substituted 0 with -1 → SURVIVED
10. writeRun : greater or equal to less than → SURVIVED
11. writeRun : greater or equal to less or equal → SURVIVED
12. writeRun : greater or equal to greater than → SURVIVED
13. writeRun : greater or equal to equal → SURVIVED
14. writeRun : greater or equal to not equal → SURVIVED
15. writeRun : Incremented (a++) integer local variable number 1 → SURVIVED
16. writeRun : Incremented (++a) integer local variable number 1 → SURVIVED
17. writeRun : Changed increment from 1 to -1 → TIMED_OUT
18. writeRun : removed conditional - replaced comparison check with true → TIMED_OUT
19. writeRun : Negated integer local variable number 1 → TIMED_OUT
20. writeRun : Incremented (a++) integer field runLength → TIMED_OUT
21. writeRun : Decremented (a--) integer local variable number 1 → TIMED_OUT
22. writeRun : Incremented (++a) integer field runLength → TIMED_OUT
23. writeRun : Decremented (--a) integer local variable number 1 → TIMED_OUT
24. writeRun : Decremented (a--) integer field runLength → KILLED
25. writeRun : Decremented (--a) integer fieldrunLength → KILLED
            for (int i = 0; i < runLength; i++) {
325 6 1. writeRun : removed call to org/apache/commons/compress/compressors/bzip2/CRC::updateCRC → SURVIVED
2. writeRun : Incremented (a++) integer field currentChar → SURVIVED
3. writeRun : Decremented (a--) integer field currentChar → SURVIVED
4. writeRun : Incremented (++a) integer field currentChar → SURVIVED
5. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
6. writeRun : Negated integer field currentChar → KILLED
                mCrc.updateCRC((char) currentChar);
326
            }
327 9 1. writeRun : Incremented (a++) integer field runLength → SURVIVED
2. writeRun : Decremented (a--) integer field runLength → SURVIVED
3. writeRun : Incremented (++a) integer field runLength → SURVIVED
4. writeRun : RemoveSwitch 0 mutation → KILLED
5. writeRun : RemoveSwitch 1 mutation → KILLED
6. writeRun : RemoveSwitch 2 mutation → KILLED
7. writeRun : Changed switch default to be first case → KILLED
8. writeRun : Negated integer field runLength → KILLED
9. writeRun : Decremented (--a) integer fieldrunLength → KILLED
            switch (runLength) {
328
            case 1:
329 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
330 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
331
                break;
332
            case 2:
333 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
334 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
335 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
336 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
337
                break;
338
            case 3:
339 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
340 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
341 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
342 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
343 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
344 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
345
                break;
346
            default:
347 25 1. writeRun : Substituted 4 with 5 → SURVIVED
2. writeRun : Substituted 1 with 0 → SURVIVED
3. writeRun : Replaced integer subtraction with addition → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer subtraction with addition → SURVIVED
7. writeRun : Replaced integer subtraction with multiplication → SURVIVED
8. writeRun : Replaced integer subtraction with division → SURVIVED
9. writeRun : Replaced integer subtraction with modulus → SURVIVED
10. writeRun : Substituted 4 with 1 → SURVIVED
11. writeRun : Substituted 4 with 0 → SURVIVED
12. writeRun : Substituted 1 with 0 → SURVIVED
13. writeRun : Substituted 4 with -1 → SURVIVED
14. writeRun : Substituted 1 with -1 → SURVIVED
15. writeRun : Substituted 4 with -4 → SURVIVED
16. writeRun : Substituted 1 with -1 → SURVIVED
17. writeRun : Substituted 4 with 5 → SURVIVED
18. writeRun : Substituted 1 with 2 → SURVIVED
19. writeRun : Substituted 4 with 3 → SURVIVED
20. writeRun : Substituted 1 with 0 → SURVIVED
21. writeRun : Incremented (a++) integer field runLength → SURVIVED
22. writeRun : Decremented (a--) integer field runLength → SURVIVED
23. writeRun : Incremented (++a) integer field runLength → SURVIVED
24. writeRun : Decremented (--a) integer fieldrunLength → SURVIVED
25. writeRun : Negated integer field runLength → KILLED
                inUse[runLength - 4] = true;
348 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Removed assignment to member variable last → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with multiplication → SURVIVED
6. writeRun : Replaced integer addition with division → SURVIVED
7. writeRun : Replaced integer addition with modulus → SURVIVED
8. writeRun : Substituted 1 with 0 → SURVIVED
9. writeRun : Substituted 1 with 2 → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Incremented (a++) integer field last → SURVIVED
12. writeRun : Decremented (a--) integer field last → SURVIVED
13. writeRun : Incremented (++a) integer field last → SURVIVED
14. writeRun : Decremented (--a) integer fieldlast → SURVIVED
15. writeRun : Replaced integer addition with subtraction → KILLED
16. writeRun : Negated integer field last → KILLED
17. writeRun : Replaced integer addition with subtraction → KILLED
18. writeRun : Substituted 1 with -1 → KILLED
19. writeRun : Substituted 1 with -1 → KILLED
                last++;
349 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer operation with first member → SURVIVED
3. writeRun : Replaced integer operation by second member → SURVIVED
4. writeRun : Replaced integer addition with multiplication → SURVIVED
5. writeRun : Replaced integer addition with division → SURVIVED
6. writeRun : Replaced integer addition with modulus → SURVIVED
7. writeRun : Substituted 1 with 0 → SURVIVED
8. writeRun : Substituted 1 with 2 → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Incremented (a++) integer field last → SURVIVED
11. writeRun : Incremented (a++) integer field currentChar → SURVIVED
12. writeRun : Decremented (a--) integer field last → SURVIVED
13. writeRun : Decremented (a--) integer field currentChar → SURVIVED
14. writeRun : Incremented (++a) integer field last → SURVIVED
15. writeRun : Incremented (++a) integer field currentChar → SURVIVED
16. writeRun : Decremented (--a) integer fieldlast → SURVIVED
17. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
18. writeRun : Replaced integer addition with subtraction → KILLED
19. writeRun : Negated integer field last → KILLED
20. writeRun : Negated integer field currentChar → KILLED
21. writeRun : Replaced integer addition with subtraction → KILLED
22. writeRun : Substituted 1 with -1 → KILLED
23. writeRun : Substituted 1 with -1 → KILLED
                block[last + 1] = (char) currentChar;
350 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
351 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
352 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
353 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
354 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
355 23 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Replaced integer operation with first member → SURVIVED
4. writeRun : Replaced integer operation by second member → SURVIVED
5. writeRun : Replaced integer addition with subtraction → SURVIVED
6. writeRun : Replaced integer addition with multiplication → SURVIVED
7. writeRun : Replaced integer addition with division → SURVIVED
8. writeRun : Replaced integer addition with modulus → SURVIVED
9. writeRun : Substituted 1 with 0 → SURVIVED
10. writeRun : Substituted 1 with -1 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with 2 → SURVIVED
13. writeRun : Substituted 1 with 0 → SURVIVED
14. writeRun : Incremented (a++) integer field last → SURVIVED
15. writeRun : Incremented (a++) integer field currentChar → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Decremented (a--) integer field currentChar → SURVIVED
18. writeRun : Incremented (++a) integer field last → SURVIVED
19. writeRun : Incremented (++a) integer field currentChar → SURVIVED
20. writeRun : Decremented (--a) integer fieldlast → SURVIVED
21. writeRun : Decremented (--a) integer fieldcurrentChar → SURVIVED
22. writeRun : Negated integer field last → KILLED
23. writeRun : Negated integer field currentChar → KILLED
                block[last + 1] = (char) currentChar;
356 19 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Replaced integer addition with subtraction → SURVIVED
3. writeRun : Removed assignment to member variable last → SURVIVED
4. writeRun : Replaced integer operation with first member → SURVIVED
5. writeRun : Replaced integer operation by second member → SURVIVED
6. writeRun : Replaced integer addition with subtraction → SURVIVED
7. writeRun : Replaced integer addition with multiplication → SURVIVED
8. writeRun : Replaced integer addition with division → SURVIVED
9. writeRun : Replaced integer addition with modulus → SURVIVED
10. writeRun : Substituted 1 with 0 → SURVIVED
11. writeRun : Substituted 1 with -1 → SURVIVED
12. writeRun : Substituted 1 with -1 → SURVIVED
13. writeRun : Substituted 1 with 2 → SURVIVED
14. writeRun : Substituted 1 with 0 → SURVIVED
15. writeRun : Incremented (a++) integer field last → SURVIVED
16. writeRun : Decremented (a--) integer field last → SURVIVED
17. writeRun : Incremented (++a) integer field last → SURVIVED
18. writeRun : Decremented (--a) integer fieldlast → SURVIVED
19. writeRun : Negated integer field last → KILLED
                last++;
357 37 1. writeRun : Substituted 1 with 0 → SURVIVED
2. writeRun : Substituted 4 with 5 → SURVIVED
3. writeRun : Replaced integer addition with subtraction → SURVIVED
4. writeRun : Replaced integer subtraction with addition → SURVIVED
5. writeRun : Replaced integer operation with first member → SURVIVED
6. writeRun : Replaced integer operation with first member → SURVIVED
7. writeRun : Replaced integer operation by second member → SURVIVED
8. writeRun : Replaced integer operation by second member → SURVIVED
9. writeRun : Replaced integer addition with subtraction → SURVIVED
10. writeRun : Replaced integer subtraction with addition → SURVIVED
11. writeRun : Replaced integer addition with multiplication → SURVIVED
12. writeRun : Replaced integer subtraction with multiplication → SURVIVED
13. writeRun : Replaced integer addition with division → SURVIVED
14. writeRun : Replaced integer subtraction with division → SURVIVED
15. writeRun : Replaced integer addition with modulus → SURVIVED
16. writeRun : Replaced integer subtraction with modulus → SURVIVED
17. writeRun : Substituted 4 with 1 → SURVIVED
18. writeRun : Substituted 1 with 0 → SURVIVED
19. writeRun : Substituted 4 with 0 → SURVIVED
20. writeRun : Substituted 1 with -1 → SURVIVED
21. writeRun : Substituted 4 with -1 → SURVIVED
22. writeRun : Substituted 1 with -1 → SURVIVED
23. writeRun : Substituted 4 with -4 → SURVIVED
24. writeRun : Substituted 1 with 2 → SURVIVED
25. writeRun : Substituted 4 with 5 → SURVIVED
26. writeRun : Substituted 1 with 0 → SURVIVED
27. writeRun : Substituted 4 with 3 → SURVIVED
28. writeRun : Incremented (a++) integer field last → SURVIVED
29. writeRun : Incremented (a++) integer field runLength → SURVIVED
30. writeRun : Decremented (a--) integer field last → SURVIVED
31. writeRun : Decremented (a--) integer field runLength → SURVIVED
32. writeRun : Incremented (++a) integer field last → SURVIVED
33. writeRun : Incremented (++a) integer field runLength → SURVIVED
34. writeRun : Decremented (--a) integer fieldlast → SURVIVED
35. writeRun : Decremented (--a) integer fieldrunLength → SURVIVED
36. writeRun : Negated integer field last → KILLED
37. writeRun : Negated integer field runLength → KILLED
                block[last + 1] = (char) (runLength - 4);
358
                break;
359
            }
360
        } else {
361 1 1. writeRun : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::endBlock → NO_COVERAGE
            endBlock();
362 1 1. writeRun : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::initBlock → NO_COVERAGE
            initBlock();
363 1 1. writeRun : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → NO_COVERAGE
            writeRun();
364
        }
365
    }
366
367 6 1. <init> : Substituted 0 with 1 → SURVIVED
2. <init> : Removed assignment to member variable closed → SURVIVED
3. <init> : Substituted 0 with 1 → SURVIVED
4. <init> : Substituted 0 with -1 → SURVIVED
5. <init> : Substituted 0 with 1 → SURVIVED
6. <init> : Substituted 0 with -1 → SURVIVED
    private boolean closed = false;
368
369
    protected void finalize() throws Throwable {
370 1 1. finalize : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::close → NO_COVERAGE
        close();
371 1 1. finalize : removed call to java/lang/Object::finalize → NO_COVERAGE
        super.finalize();
372
    }
373
374
    public void close() throws IOException {
375 8 1. close : negated conditional → SURVIVED
2. close : removed conditional - replaced equality check with false → SURVIVED
3. close : removed conditional - replaced equality check with true → SURVIVED
4. close : equal to less than → SURVIVED
5. close : equal to less or equal → SURVIVED
6. close : equal to greater than → SURVIVED
7. close : equal to greater or equal → SURVIVED
8. close : equal to not equal → SURVIVED
        if (closed) {
376
            return;
377
        }
378 1 1. close : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::finish → SURVIVED
        finish();
379 1 1. close : removed call to org/apache/commons/compress/compressors/CompressorOutputStream::close → SURVIVED
        super.close();
380 1 1. close : removed call to java/io/OutputStream::close → SURVIVED
        bsStream.close();
381 7 1. close : Substituted 1 with 0 → SURVIVED
2. close : Removed assignment to member variable closed → SURVIVED
3. close : Substituted 1 with 0 → SURVIVED
4. close : Substituted 1 with -1 → SURVIVED
5. close : Substituted 1 with -1 → SURVIVED
6. close : Substituted 1 with 2 → SURVIVED
7. close : Substituted 1 with 0 → SURVIVED
        closed = true;
382
    }
383
384
    protected void finish() throws IOException {
385 8 1. finish : negated conditional → SURVIVED
2. finish : removed conditional - replaced equality check with false → SURVIVED
3. finish : removed conditional - replaced equality check with true → SURVIVED
4. finish : equal to less than → SURVIVED
5. finish : equal to less or equal → SURVIVED
6. finish : equal to greater than → SURVIVED
7. finish : equal to greater or equal → SURVIVED
8. finish : equal to not equal → SURVIVED
        if (closed) {
386
            return;
387
        }
388
389 14 1. finish : changed conditional boundary → SURVIVED
2. finish : negated conditional → SURVIVED
3. finish : removed conditional - replaced comparison check with false → SURVIVED
4. finish : removed conditional - replaced comparison check with true → SURVIVED
5. finish : Negated integer field runLength → SURVIVED
6. finish : Less or equal to less than → SURVIVED
7. finish : Less or equal to greater than → SURVIVED
8. finish : Less or equal to greater or equal → SURVIVED
9. finish : Less or equal to equal → SURVIVED
10. finish : Less or equal to not equal → SURVIVED
11. finish : Incremented (a++) integer field runLength → SURVIVED
12. finish : Decremented (a--) integer field runLength → SURVIVED
13. finish : Incremented (++a) integer field runLength → SURVIVED
14. finish : Decremented (--a) integer fieldrunLength → SURVIVED
        if (runLength > 0) {
390 1 1. finish : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → SURVIVED
            writeRun();
391
        }
392 7 1. finish : Substituted -1 with 0 → SURVIVED
2. finish : Removed assignment to member variable currentChar → SURVIVED
3. finish : Substituted -1 with 1 → SURVIVED
4. finish : Substituted -1 with 0 → SURVIVED
5. finish : Substituted -1 with 1 → SURVIVED
6. finish : Substituted -1 with 0 → SURVIVED
7. finish : Substituted -1 with -2 → SURVIVED
        currentChar = -1;
393 1 1. finish : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::endBlock → SURVIVED
        endBlock();
394 1 1. finish : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::endCompression → SURVIVED
        endCompression();
395
    }
396
397
    public void flush() throws IOException {
398 1 1. flush : removed call to org/apache/commons/compress/compressors/CompressorOutputStream::flush → NO_COVERAGE
        super.flush();
399 1 1. flush : removed call to java/io/OutputStream::flush → NO_COVERAGE
        bsStream.flush();
400
    }
401
402
    private int blockCRC, combinedCRC;
403
404
    private void initialize() throws IOException {
405 6 1. initialize : Substituted 0 with 1 → SURVIVED
2. initialize : Removed assignment to member variable bytesOut → SURVIVED
3. initialize : Substituted 0 with 1 → SURVIVED
4. initialize : Substituted 0 with -1 → SURVIVED
5. initialize : Substituted 0 with 1 → SURVIVED
6. initialize : Substituted 0 with -1 → SURVIVED
        bytesOut = 0;
406 6 1. initialize : Substituted 0 with 1 → SURVIVED
2. initialize : Removed assignment to member variable nBlocksRandomised → SURVIVED
3. initialize : Substituted 0 with 1 → SURVIVED
4. initialize : Substituted 0 with -1 → SURVIVED
5. initialize : Substituted 0 with 1 → SURVIVED
6. initialize : Substituted 0 with -1 → SURVIVED
        nBlocksRandomised = 0;
407
408 8 1. initialize : Substituted 66 with 67 → SURVIVED
2. initialize : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. initialize : Substituted 66 with 1 → SURVIVED
4. initialize : Substituted 66 with 0 → SURVIVED
5. initialize : Substituted 66 with -1 → SURVIVED
6. initialize : Substituted 66 with -66 → SURVIVED
7. initialize : Substituted 66 with 67 → SURVIVED
8. initialize : Substituted 66 with 65 → SURVIVED
        bsPutUChar('B');
409 8 1. initialize : Substituted 90 with 91 → SURVIVED
2. initialize : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. initialize : Substituted 90 with 1 → SURVIVED
4. initialize : Substituted 90 with 0 → SURVIVED
5. initialize : Substituted 90 with -1 → SURVIVED
6. initialize : Substituted 90 with -90 → SURVIVED
7. initialize : Substituted 90 with 91 → SURVIVED
8. initialize : Substituted 90 with 89 → SURVIVED
        bsPutUChar('Z');
410
        /* Write `magic' bytes h indicating file-format == huffmanised,
411
           followed by a digit indicating blockSize100k.
412
        */
413 8 1. initialize : Substituted 104 with 105 → SURVIVED
2. initialize : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. initialize : Substituted 104 with 1 → SURVIVED
4. initialize : Substituted 104 with 0 → SURVIVED
5. initialize : Substituted 104 with -1 → SURVIVED
6. initialize : Substituted 104 with -104 → SURVIVED
7. initialize : Substituted 104 with 105 → SURVIVED
8. initialize : Substituted 104 with 103 → SURVIVED
        bsPutUChar('h');
414 20 1. initialize : Substituted 48 with 49 → SURVIVED
2. initialize : Replaced integer addition with subtraction → SURVIVED
3. initialize : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
4. initialize : Negated integer field blockSize100k → SURVIVED
5. initialize : Replaced integer operation with first member → SURVIVED
6. initialize : Replaced integer operation by second member → SURVIVED
7. initialize : Replaced integer addition with subtraction → SURVIVED
8. initialize : Replaced integer addition with multiplication → SURVIVED
9. initialize : Replaced integer addition with division → SURVIVED
10. initialize : Replaced integer addition with modulus → SURVIVED
11. initialize : Substituted 48 with 1 → SURVIVED
12. initialize : Substituted 48 with 0 → SURVIVED
13. initialize : Substituted 48 with -1 → SURVIVED
14. initialize : Substituted 48 with -48 → SURVIVED
15. initialize : Substituted 48 with 49 → SURVIVED
16. initialize : Substituted 48 with 47 → SURVIVED
17. initialize : Incremented (a++) integer field blockSize100k → SURVIVED
18. initialize : Decremented (a--) integer field blockSize100k → SURVIVED
19. initialize : Incremented (++a) integer field blockSize100k → SURVIVED
20. initialize : Decremented (--a) integer fieldblockSize100k → SURVIVED
        bsPutUChar('0' + blockSize100k);
415
416 6 1. initialize : Substituted 0 with 1 → SURVIVED
2. initialize : Removed assignment to member variable combinedCRC → SURVIVED
3. initialize : Substituted 0 with 1 → SURVIVED
4. initialize : Substituted 0 with -1 → SURVIVED
5. initialize : Substituted 0 with 1 → SURVIVED
6. initialize : Substituted 0 with -1 → SURVIVED
        combinedCRC = 0;
417
    }
418
419
    private int allowableBlockSize;
420
421
    private void initBlock() {
422
        //        blockNo++;
423 1 1. initBlock : removed call to org/apache/commons/compress/compressors/bzip2/CRC::initialiseCRC → SURVIVED
        mCrc.initialiseCRC();
424 7 1. initBlock : Substituted -1 with 0 → SURVIVED
2. initBlock : Removed assignment to member variable last → SURVIVED
3. initBlock : Substituted -1 with 1 → SURVIVED
4. initBlock : Substituted -1 with 0 → SURVIVED
5. initBlock : Substituted -1 with 1 → SURVIVED
6. initBlock : Substituted -1 with 0 → SURVIVED
7. initBlock : Substituted -1 with -2 → SURVIVED
        last = -1;
425
        //        ch = 0;
426
427 27 1. initBlock : Substituted 0 with 1 → SURVIVED
2. initBlock : negated conditional → SURVIVED
3. initBlock : removed conditional - replaced comparison check with false → SURVIVED
4. initBlock : Substituted 0 with 1 → SURVIVED
5. initBlock : Substituted 256 with 1 → SURVIVED
6. initBlock : Substituted 256 with 0 → SURVIVED
7. initBlock : Substituted 256 with -1 → SURVIVED
8. initBlock : Substituted 256 with -256 → SURVIVED
9. initBlock : Substituted 0 with 1 → SURVIVED
10. initBlock : Substituted 256 with 255 → SURVIVED
11. initBlock : greater or equal to less than → SURVIVED
12. initBlock : greater or equal to less or equal → SURVIVED
13. initBlock : greater or equal to equal → SURVIVED
14. initBlock : greater or equal to not equal → SURVIVED
15. initBlock : Incremented (a++) integer local variable number 1 → SURVIVED
16. initBlock : Incremented (++a) integer local variable number 1 → SURVIVED
17. initBlock : changed conditional boundary → KILLED
18. initBlock : Changed increment from 1 to -1 → KILLED
19. initBlock : Substituted 256 with 257 → KILLED
20. initBlock : removed conditional - replaced comparison check with true → KILLED
21. initBlock : Negated integer local variable number 1 → KILLED
22. initBlock : Substituted 0 with -1 → KILLED
23. initBlock : Substituted 256 with 257 → KILLED
24. initBlock : Substituted 0 with -1 → KILLED
25. initBlock : greater or equal to greater than → KILLED
26. initBlock : Decremented (a--) integer local variable number 1 → KILLED
27. initBlock : Decremented (--a) integer local variable number 1 → KILLED
        for (int i = 0; i < 256; i++) {
428 10 1. initBlock : Substituted 0 with 1 → SURVIVED
2. initBlock : Substituted 0 with 1 → SURVIVED
3. initBlock : Substituted 0 with -1 → SURVIVED
4. initBlock : Substituted 0 with 1 → SURVIVED
5. initBlock : Substituted 0 with -1 → SURVIVED
6. initBlock : Incremented (a++) integer local variable number 1 → SURVIVED
7. initBlock : Incremented (++a) integer local variable number 1 → SURVIVED
8. initBlock : Decremented (a--) integer local variable number 1 → TIMED_OUT
9. initBlock : Negated integer local variable number 1 → KILLED
10. initBlock : Decremented (--a) integer local variable number 1 → KILLED
            inUse[i] = false;
429
        }
430
431
        /* 20 is just a paranoia constant */
432 34 1. initBlock : Substituted 100000 with 100001 → SURVIVED
2. initBlock : Substituted 20 with 21 → SURVIVED
3. initBlock : Replaced integer multiplication with division → SURVIVED
4. initBlock : Replaced integer subtraction with addition → SURVIVED
5. initBlock : Removed assignment to member variable allowableBlockSize → SURVIVED
6. initBlock : Replaced integer operation with first member → SURVIVED
7. initBlock : Replaced integer operation with first member → SURVIVED
8. initBlock : Replaced integer operation by second member → SURVIVED
9. initBlock : Replaced integer multiplication with division → SURVIVED
10. initBlock : Replaced integer subtraction with addition → SURVIVED
11. initBlock : Replaced integer subtraction with multiplication → SURVIVED
12. initBlock : Replaced integer multiplication with addition → SURVIVED
13. initBlock : Replaced integer subtraction with division → SURVIVED
14. initBlock : Replaced integer multiplication with subtraction → SURVIVED
15. initBlock : Replaced integer subtraction with modulus → SURVIVED
16. initBlock : Substituted 20 with 1 → SURVIVED
17. initBlock : Substituted 20 with 0 → SURVIVED
18. initBlock : Substituted 20 with -1 → SURVIVED
19. initBlock : Substituted 20 with -20 → SURVIVED
20. initBlock : Substituted 100000 with 100001 → SURVIVED
21. initBlock : Substituted 20 with 21 → SURVIVED
22. initBlock : Substituted 100000 with 99999 → SURVIVED
23. initBlock : Substituted 20 with 19 → SURVIVED
24. initBlock : Incremented (a++) integer field blockSize100k → SURVIVED
25. initBlock : Decremented (a--) integer field blockSize100k → SURVIVED
26. initBlock : Incremented (++a) integer field blockSize100k → SURVIVED
27. initBlock : Decremented (--a) integer fieldblockSize100k → SURVIVED
28. initBlock : Negated integer field blockSize100k → KILLED
29. initBlock : Replaced integer operation by second member → KILLED
30. initBlock : Replaced integer multiplication with modulus → KILLED
31. initBlock : Substituted 100000 with 1 → KILLED
32. initBlock : Substituted 100000 with 0 → KILLED
33. initBlock : Substituted 100000 with -1 → KILLED
34. initBlock : Substituted 100000 with -100000 → KILLED
        allowableBlockSize = baseBlockSize * blockSize100k - 20;
433
    }
434
435
    private void endBlock() throws IOException {
436 2 1. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/CRC::getFinalCRC → SURVIVED
2. endBlock : Removed assignment to member variable blockCRC → SURVIVED
        blockCRC = mCrc.getFinalCRC();
437 30 1. endBlock : Substituted 1 with 0 → SURVIVED
2. endBlock : Substituted 31 with 32 → SURVIVED
3. endBlock : Replaced Shift Left with Shift Right → SURVIVED
4. endBlock : Replaced Unsigned Shift Right with Shift Left → SURVIVED
5. endBlock : Replaced bitwise OR with AND → SURVIVED
6. endBlock : Removed assignment to member variable combinedCRC → SURVIVED
7. endBlock : Negated integer field combinedCRC → SURVIVED
8. endBlock : Negated integer field combinedCRC → SURVIVED
9. endBlock : Substituted 31 with 1 → SURVIVED
10. endBlock : Substituted 1 with 0 → SURVIVED
11. endBlock : Substituted 31 with 0 → SURVIVED
12. endBlock : Substituted 1 with -1 → SURVIVED
13. endBlock : Substituted 31 with -1 → SURVIVED
14. endBlock : Substituted 1 with -1 → SURVIVED
15. endBlock : Substituted 31 with -31 → SURVIVED
16. endBlock : Substituted 1 with 2 → SURVIVED
17. endBlock : Substituted 31 with 32 → SURVIVED
18. endBlock : Substituted 1 with 0 → SURVIVED
19. endBlock : Substituted 31 with 30 → SURVIVED
20. endBlock : Replaced integer or with and → SURVIVED
21. endBlock : Replaced integer or by first member → SURVIVED
22. endBlock : Replace integer or by second member → SURVIVED
23. endBlock : Incremented (a++) integer field combinedCRC → SURVIVED
24. endBlock : Incremented (a++) integer field combinedCRC → SURVIVED
25. endBlock : Decremented (a--) integer field combinedCRC → SURVIVED
26. endBlock : Decremented (a--) integer field combinedCRC → SURVIVED
27. endBlock : Incremented (++a) integer field combinedCRC → SURVIVED
28. endBlock : Incremented (++a) integer field combinedCRC → SURVIVED
29. endBlock : Decremented (--a) integer fieldcombinedCRC → SURVIVED
30. endBlock : Decremented (--a) integer fieldcombinedCRC → SURVIVED
        combinedCRC = (combinedCRC << 1) | (combinedCRC >>> 31);
438 12 1. endBlock : Replaced XOR with AND → SURVIVED
2. endBlock : Removed assignment to member variable combinedCRC → SURVIVED
3. endBlock : Negated integer field combinedCRC → SURVIVED
4. endBlock : Negated integer field blockCRC → SURVIVED
5. endBlock : Incremented (a++) integer field combinedCRC → SURVIVED
6. endBlock : Incremented (a++) integer field blockCRC → SURVIVED
7. endBlock : Decremented (a--) integer field combinedCRC → SURVIVED
8. endBlock : Decremented (a--) integer field blockCRC → SURVIVED
9. endBlock : Incremented (++a) integer field combinedCRC → SURVIVED
10. endBlock : Incremented (++a) integer field blockCRC → SURVIVED
11. endBlock : Decremented (--a) integer fieldcombinedCRC → SURVIVED
12. endBlock : Decremented (--a) integer fieldblockCRC → SURVIVED
        combinedCRC ^= blockCRC;
439
440
        // If the stream was empty we must skip the rest of this method.
441
        // See bug#32200.
442 19 1. endBlock : Substituted -1 with 0 → SURVIVED
2. endBlock : negated conditional → SURVIVED
3. endBlock : removed conditional - replaced equality check with false → SURVIVED
4. endBlock : removed conditional - replaced equality check with true → SURVIVED
5. endBlock : Negated integer field last → SURVIVED
6. endBlock : Substituted -1 with 1 → SURVIVED
7. endBlock : Substituted -1 with 0 → SURVIVED
8. endBlock : Substituted -1 with 1 → SURVIVED
9. endBlock : Substituted -1 with 0 → SURVIVED
10. endBlock : Substituted -1 with -2 → SURVIVED
11. endBlock : not equal to less than → SURVIVED
12. endBlock : not equal to less or equal → SURVIVED
13. endBlock : not equal to greater than → SURVIVED
14. endBlock : not equal to greater or equal → SURVIVED
15. endBlock : not equal to equal → SURVIVED
16. endBlock : Incremented (a++) integer field last → SURVIVED
17. endBlock : Decremented (a--) integer field last → SURVIVED
18. endBlock : Incremented (++a) integer field last → SURVIVED
19. endBlock : Decremented (--a) integer fieldlast → SURVIVED
        if (last == -1) {
443
            return;
444
        }
445
446
        /* sort the block and establish posn of original string */
447 1 1. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::doReversibleTransformation → SURVIVED
        doReversibleTransformation();
448
449
        /*
450
          A 6-byte block header, the value chosen arbitrarily
451
          as 0x314159265359 :-).  A 32 bit value does not really
452
          give a strong enough guarantee that the value will not
453
          appear by chance in the compressed datastream.  Worst-case
454
          probability of this event, for a 900k block, is about
455
          2.0e-3 for 32 bits, 1.0e-5 for 40 bits and 4.0e-8 for 48 bits.
456
          For a compressed file of size 100Gb -- about 100000 blocks --
457
          only a 48-bit marker will do.  NB: normal compression/
458
          decompression do *not* rely on these statistical properties.
459
          They are only important when trying to recover blocks from
460
          damaged files.
461
        */
462 8 1. endBlock : Substituted 49 with 50 → SURVIVED
2. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endBlock : Substituted 49 with 1 → SURVIVED
4. endBlock : Substituted 49 with 0 → SURVIVED
5. endBlock : Substituted 49 with -1 → SURVIVED
6. endBlock : Substituted 49 with -49 → SURVIVED
7. endBlock : Substituted 49 with 50 → SURVIVED
8. endBlock : Substituted 49 with 48 → SURVIVED
        bsPutUChar(0x31);
463 8 1. endBlock : Substituted 65 with 66 → SURVIVED
2. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endBlock : Substituted 65 with 1 → SURVIVED
4. endBlock : Substituted 65 with 0 → SURVIVED
5. endBlock : Substituted 65 with -1 → SURVIVED
6. endBlock : Substituted 65 with -65 → SURVIVED
7. endBlock : Substituted 65 with 66 → SURVIVED
8. endBlock : Substituted 65 with 64 → SURVIVED
        bsPutUChar(0x41);
464 8 1. endBlock : Substituted 89 with 90 → SURVIVED
2. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endBlock : Substituted 89 with 1 → SURVIVED
4. endBlock : Substituted 89 with 0 → SURVIVED
5. endBlock : Substituted 89 with -1 → SURVIVED
6. endBlock : Substituted 89 with -89 → SURVIVED
7. endBlock : Substituted 89 with 90 → SURVIVED
8. endBlock : Substituted 89 with 88 → SURVIVED
        bsPutUChar(0x59);
465 8 1. endBlock : Substituted 38 with 39 → SURVIVED
2. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endBlock : Substituted 38 with 1 → SURVIVED
4. endBlock : Substituted 38 with 0 → SURVIVED
5. endBlock : Substituted 38 with -1 → SURVIVED
6. endBlock : Substituted 38 with -38 → SURVIVED
7. endBlock : Substituted 38 with 39 → SURVIVED
8. endBlock : Substituted 38 with 37 → SURVIVED
        bsPutUChar(0x26);
466 8 1. endBlock : Substituted 83 with 84 → SURVIVED
2. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endBlock : Substituted 83 with 1 → SURVIVED
4. endBlock : Substituted 83 with 0 → SURVIVED
5. endBlock : Substituted 83 with -1 → SURVIVED
6. endBlock : Substituted 83 with -83 → SURVIVED
7. endBlock : Substituted 83 with 84 → SURVIVED
8. endBlock : Substituted 83 with 82 → SURVIVED
        bsPutUChar(0x53);
467 8 1. endBlock : Substituted 89 with 90 → SURVIVED
2. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endBlock : Substituted 89 with 1 → SURVIVED
4. endBlock : Substituted 89 with 0 → SURVIVED
5. endBlock : Substituted 89 with -1 → SURVIVED
6. endBlock : Substituted 89 with -89 → SURVIVED
7. endBlock : Substituted 89 with 90 → SURVIVED
8. endBlock : Substituted 89 with 88 → SURVIVED
        bsPutUChar(0x59);
468
469
        /* Now the block's CRC, so it is in a known place. */
470 6 1. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutint → SURVIVED
2. endBlock : Negated integer field blockCRC → SURVIVED
3. endBlock : Incremented (a++) integer field blockCRC → SURVIVED
4. endBlock : Decremented (a--) integer field blockCRC → SURVIVED
5. endBlock : Incremented (++a) integer field blockCRC → SURVIVED
6. endBlock : Decremented (--a) integer fieldblockCRC → SURVIVED
        bsPutint(blockCRC);
471
472
        /* Now a single bit indicating randomisation. */
473 8 1. endBlock : negated conditional → SURVIVED
2. endBlock : removed conditional - replaced equality check with false → SURVIVED
3. endBlock : removed conditional - replaced equality check with true → SURVIVED
4. endBlock : equal to less than → SURVIVED
5. endBlock : equal to less or equal → SURVIVED
6. endBlock : equal to greater than → SURVIVED
7. endBlock : equal to greater or equal → SURVIVED
8. endBlock : equal to not equal → SURVIVED
        if (blockRandomised) {
474 13 1. endBlock : Substituted 1 with 0 → NO_COVERAGE
2. endBlock : Substituted 1 with 0 → NO_COVERAGE
3. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → NO_COVERAGE
4. endBlock : Substituted 1 with 0 → NO_COVERAGE
5. endBlock : Substituted 1 with 0 → NO_COVERAGE
6. endBlock : Substituted 1 with -1 → NO_COVERAGE
7. endBlock : Substituted 1 with -1 → NO_COVERAGE
8. endBlock : Substituted 1 with -1 → NO_COVERAGE
9. endBlock : Substituted 1 with -1 → NO_COVERAGE
10. endBlock : Substituted 1 with 2 → NO_COVERAGE
11. endBlock : Substituted 1 with 2 → NO_COVERAGE
12. endBlock : Substituted 1 with 0 → NO_COVERAGE
13. endBlock : Substituted 1 with 0 → NO_COVERAGE
            bsW(1, 1);
475 19 1. endBlock : Substituted 1 with 0 → NO_COVERAGE
2. endBlock : Replaced integer addition with subtraction → NO_COVERAGE
3. endBlock : Removed assignment to member variable nBlocksRandomised → NO_COVERAGE
4. endBlock : Negated integer field nBlocksRandomised → NO_COVERAGE
5. endBlock : Replaced integer operation with first member → NO_COVERAGE
6. endBlock : Replaced integer operation by second member → NO_COVERAGE
7. endBlock : Replaced integer addition with subtraction → NO_COVERAGE
8. endBlock : Replaced integer addition with multiplication → NO_COVERAGE
9. endBlock : Replaced integer addition with division → NO_COVERAGE
10. endBlock : Replaced integer addition with modulus → NO_COVERAGE
11. endBlock : Substituted 1 with 0 → NO_COVERAGE
12. endBlock : Substituted 1 with -1 → NO_COVERAGE
13. endBlock : Substituted 1 with -1 → NO_COVERAGE
14. endBlock : Substituted 1 with 2 → NO_COVERAGE
15. endBlock : Substituted 1 with 0 → NO_COVERAGE
16. endBlock : Incremented (a++) integer field nBlocksRandomised → NO_COVERAGE
17. endBlock : Decremented (a--) integer field nBlocksRandomised → NO_COVERAGE
18. endBlock : Incremented (++a) integer field nBlocksRandomised → NO_COVERAGE
19. endBlock : Decremented (--a) integer fieldnBlocksRandomised → NO_COVERAGE
            nBlocksRandomised++;
476
        } else {
477 12 1. endBlock : Substituted 1 with 0 → SURVIVED
2. endBlock : Substituted 0 with 1 → SURVIVED
3. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. endBlock : Substituted 0 with 1 → SURVIVED
5. endBlock : Substituted 1 with 0 → SURVIVED
6. endBlock : Substituted 1 with -1 → SURVIVED
7. endBlock : Substituted 0 with -1 → SURVIVED
8. endBlock : Substituted 1 with -1 → SURVIVED
9. endBlock : Substituted 1 with 2 → SURVIVED
10. endBlock : Substituted 0 with 1 → SURVIVED
11. endBlock : Substituted 1 with 0 → SURVIVED
12. endBlock : Substituted 0 with -1 → SURVIVED
            bsW(1, 0);
478
        }
479
480
        /* Finally, block's contents proper. */
481 1 1. endBlock : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::moveToFrontCodeAndSend → SURVIVED
        moveToFrontCodeAndSend();
482
    }
483
484
    private void endCompression() throws IOException {
485
        /*
486
          Now another magic 48-bit number, 0x177245385090, to
487
          indicate the end of the last block.  (sqrt(pi), if
488
          you want to know.  I did want to use e, but it contains
489
          too much repetition -- 27 18 28 18 28 46 -- for me
490
          to feel statistically comfortable.  Call me paranoid.)
491
        */
492 8 1. endCompression : Substituted 23 with 24 → SURVIVED
2. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endCompression : Substituted 23 with 1 → SURVIVED
4. endCompression : Substituted 23 with 0 → SURVIVED
5. endCompression : Substituted 23 with -1 → SURVIVED
6. endCompression : Substituted 23 with -23 → SURVIVED
7. endCompression : Substituted 23 with 24 → SURVIVED
8. endCompression : Substituted 23 with 22 → SURVIVED
        bsPutUChar(0x17);
493 8 1. endCompression : Substituted 114 with 115 → SURVIVED
2. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endCompression : Substituted 114 with 1 → SURVIVED
4. endCompression : Substituted 114 with 0 → SURVIVED
5. endCompression : Substituted 114 with -1 → SURVIVED
6. endCompression : Substituted 114 with -114 → SURVIVED
7. endCompression : Substituted 114 with 115 → SURVIVED
8. endCompression : Substituted 114 with 113 → SURVIVED
        bsPutUChar(0x72);
494 8 1. endCompression : Substituted 69 with 70 → SURVIVED
2. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endCompression : Substituted 69 with 1 → SURVIVED
4. endCompression : Substituted 69 with 0 → SURVIVED
5. endCompression : Substituted 69 with -1 → SURVIVED
6. endCompression : Substituted 69 with -69 → SURVIVED
7. endCompression : Substituted 69 with 70 → SURVIVED
8. endCompression : Substituted 69 with 68 → SURVIVED
        bsPutUChar(0x45);
495 8 1. endCompression : Substituted 56 with 57 → SURVIVED
2. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endCompression : Substituted 56 with 1 → SURVIVED
4. endCompression : Substituted 56 with 0 → SURVIVED
5. endCompression : Substituted 56 with -1 → SURVIVED
6. endCompression : Substituted 56 with -56 → SURVIVED
7. endCompression : Substituted 56 with 57 → SURVIVED
8. endCompression : Substituted 56 with 55 → SURVIVED
        bsPutUChar(0x38);
496 8 1. endCompression : Substituted 80 with 81 → SURVIVED
2. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endCompression : Substituted 80 with 1 → SURVIVED
4. endCompression : Substituted 80 with 0 → SURVIVED
5. endCompression : Substituted 80 with -1 → SURVIVED
6. endCompression : Substituted 80 with -80 → SURVIVED
7. endCompression : Substituted 80 with 81 → SURVIVED
8. endCompression : Substituted 80 with 79 → SURVIVED
        bsPutUChar(0x50);
497 8 1. endCompression : Substituted 144 with 145 → SURVIVED
2. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED
3. endCompression : Substituted 144 with 1 → SURVIVED
4. endCompression : Substituted 144 with 0 → SURVIVED
5. endCompression : Substituted 144 with -1 → SURVIVED
6. endCompression : Substituted 144 with -144 → SURVIVED
7. endCompression : Substituted 144 with 145 → SURVIVED
8. endCompression : Substituted 144 with 143 → SURVIVED
        bsPutUChar(0x90);
498
499 6 1. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutint → SURVIVED
2. endCompression : Negated integer field combinedCRC → SURVIVED
3. endCompression : Incremented (a++) integer field combinedCRC → SURVIVED
4. endCompression : Decremented (a--) integer field combinedCRC → SURVIVED
5. endCompression : Incremented (++a) integer field combinedCRC → SURVIVED
6. endCompression : Decremented (--a) integer fieldcombinedCRC → SURVIVED
        bsPutint(combinedCRC);
500
501 1 1. endCompression : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsFinishedWithStream → SURVIVED
        bsFinishedWithStream();
502
    }
503
504
    private void hbAssignCodes (int[] code, char[] length, int minLen,
505
                                int maxLen, int alphaSize) {
506
        int n, vec, i;
507
508 5 1. hbAssignCodes : Substituted 0 with 1 → SURVIVED
2. hbAssignCodes : Substituted 0 with 1 → SURVIVED
3. hbAssignCodes : Substituted 0 with -1 → SURVIVED
4. hbAssignCodes : Substituted 0 with 1 → SURVIVED
5. hbAssignCodes : Substituted 0 with -1 → SURVIVED
        vec = 0;
509 26 1. hbAssignCodes : changed conditional boundary → SURVIVED
2. hbAssignCodes : negated conditional → SURVIVED
3. hbAssignCodes : removed conditional - replaced comparison check with false → SURVIVED
4. hbAssignCodes : Negated integer local variable number 3 → SURVIVED
5. hbAssignCodes : Negated integer local variable number 4 → SURVIVED
6. hbAssignCodes : greater than to less than → SURVIVED
7. hbAssignCodes : greater than to less or equal → SURVIVED
8. hbAssignCodes : greater than to greater or equal → SURVIVED
9. hbAssignCodes : greater than to equal → SURVIVED
10. hbAssignCodes : greater than to not equal → SURVIVED
11. hbAssignCodes : Incremented (a++) integer local variable number 3 → SURVIVED
12. hbAssignCodes : Incremented (a++) integer local variable number 6 → SURVIVED
13. hbAssignCodes : Decremented (a--) integer local variable number 3 → SURVIVED
14. hbAssignCodes : Decremented (a--) integer local variable number 4 → SURVIVED
15. hbAssignCodes : Incremented (++a) integer local variable number 3 → SURVIVED
16. hbAssignCodes : Incremented (++a) integer local variable number 6 → SURVIVED
17. hbAssignCodes : Decremented (--a) integer local variable number 3 → SURVIVED
18. hbAssignCodes : Decremented (--a) integer local variable number 4 → SURVIVED
19. hbAssignCodes : Changed increment from 1 to -1 → TIMED_OUT
20. hbAssignCodes : removed conditional - replaced comparison check with true → TIMED_OUT
21. hbAssignCodes : Removed increment 1 → TIMED_OUT
22. hbAssignCodes : Negated integer local variable number 7 → TIMED_OUT
23. hbAssignCodes : Incremented (a++) integer local variable number 4 → TIMED_OUT
24. hbAssignCodes : Decremented (a--) integer local variable number 6 → TIMED_OUT
25. hbAssignCodes : Incremented (++a) integer local variable number 4 → TIMED_OUT
26. hbAssignCodes : Decremented (--a) integer local variable number 6 → TIMED_OUT
        for (n = minLen; n <= maxLen; n++) {
510 25 1. hbAssignCodes : changed conditional boundary → SURVIVED
2. hbAssignCodes : Substituted 0 with 1 → SURVIVED
3. hbAssignCodes : negated conditional → SURVIVED
4. hbAssignCodes : removed conditional - replaced comparison check with false → SURVIVED
5. hbAssignCodes : Negated integer local variable number 5 → SURVIVED
6. hbAssignCodes : Substituted 0 with 1 → SURVIVED
7. hbAssignCodes : Substituted 0 with 1 → SURVIVED
8. hbAssignCodes : greater or equal to less than → SURVIVED
9. hbAssignCodes : greater or equal to less or equal → SURVIVED
10. hbAssignCodes : greater or equal to greater than → SURVIVED
11. hbAssignCodes : greater or equal to equal → SURVIVED
12. hbAssignCodes : greater or equal to not equal → SURVIVED
13. hbAssignCodes : Incremented (a++) integer local variable number 8 → SURVIVED
14. hbAssignCodes : Decremented (a--) integer local variable number 5 → SURVIVED
15. hbAssignCodes : Incremented (++a) integer local variable number 8 → SURVIVED
16. hbAssignCodes : Decremented (--a) integer local variable number 5 → SURVIVED
17. hbAssignCodes : Changed increment from 1 to -1 → KILLED
18. hbAssignCodes : removed conditional - replaced comparison check with true → KILLED
19. hbAssignCodes : Negated integer local variable number 8 → KILLED
20. hbAssignCodes : Substituted 0 with -1 → KILLED
21. hbAssignCodes : Substituted 0 with -1 → KILLED
22. hbAssignCodes : Incremented (a++) integer local variable number 5 → KILLED
23. hbAssignCodes : Decremented (a--) integer local variable number 8 → KILLED
24. hbAssignCodes : Incremented (++a) integer local variable number 5 → KILLED
25. hbAssignCodes : Decremented (--a) integer local variable number 8 → KILLED
            for (i = 0; i < alphaSize; i++) {
511 18 1. hbAssignCodes : negated conditional → SURVIVED
2. hbAssignCodes : removed conditional - replaced equality check with false → SURVIVED
3. hbAssignCodes : removed conditional - replaced equality check with true → SURVIVED
4. hbAssignCodes : Negated integer local variable number 7 → SURVIVED
5. hbAssignCodes : not equal to less than → SURVIVED
6. hbAssignCodes : not equal to less or equal → SURVIVED
7. hbAssignCodes : not equal to greater than → SURVIVED
8. hbAssignCodes : not equal to greater or equal → SURVIVED
9. hbAssignCodes : not equal to equal → SURVIVED
10. hbAssignCodes : Incremented (a++) integer local variable number 8 → SURVIVED
11. hbAssignCodes : Incremented (a++) integer local variable number 6 → SURVIVED
12. hbAssignCodes : Decremented (a--) integer local variable number 6 → SURVIVED
13. hbAssignCodes : Incremented (++a) integer local variable number 8 → SURVIVED
14. hbAssignCodes : Incremented (++a) integer local variable number 6 → SURVIVED
15. hbAssignCodes : Decremented (--a) integer local variable number 6 → SURVIVED
16. hbAssignCodes : Decremented (a--) integer local variable number 8 → TIMED_OUT
17. hbAssignCodes : Negated integer local variable number 8 → KILLED
18. hbAssignCodes : Decremented (--a) integer local variable number 8 → KILLED
                if (length[i] == n) {
512 10 1. hbAssignCodes : Negated integer local variable number 6 → SURVIVED
2. hbAssignCodes : Incremented (a++) integer local variable number 8 → SURVIVED
3. hbAssignCodes : Incremented (a++) integer local variable number 7 → SURVIVED
4. hbAssignCodes : Decremented (a--) integer local variable number 7 → SURVIVED
5. hbAssignCodes : Incremented (++a) integer local variable number 8 → SURVIVED
6. hbAssignCodes : Incremented (++a) integer local variable number 7 → SURVIVED
7. hbAssignCodes : Decremented (--a) integer local variable number 7 → SURVIVED
8. hbAssignCodes : Decremented (a--) integer local variable number 8 → TIMED_OUT
9. hbAssignCodes : Decremented (--a) integer local variable number 8 → TIMED_OUT
10. hbAssignCodes : Negated integer local variable number 8 → KILLED
                    code[i] = vec;
513 2 1. hbAssignCodes : Changed increment from 1 to -1 → SURVIVED
2. hbAssignCodes : Removed increment 1 → SURVIVED
                    vec++;
514
                }
515
            }
516 12 1. hbAssignCodes : Substituted 1 with 0 → SURVIVED
2. hbAssignCodes : Replaced Shift Left with Shift Right → SURVIVED
3. hbAssignCodes : Negated integer local variable number 6 → SURVIVED
4. hbAssignCodes : Substituted 1 with 0 → SURVIVED
5. hbAssignCodes : Substituted 1 with -1 → SURVIVED
6. hbAssignCodes : Substituted 1 with -1 → SURVIVED
7. hbAssignCodes : Substituted 1 with 2 → SURVIVED
8. hbAssignCodes : Substituted 1 with 0 → SURVIVED
9. hbAssignCodes : Incremented (a++) integer local variable number 7 → SURVIVED
10. hbAssignCodes : Decremented (a--) integer local variable number 7 → SURVIVED
11. hbAssignCodes : Incremented (++a) integer local variable number 7 → SURVIVED
12. hbAssignCodes : Decremented (--a) integer local variable number 7 → SURVIVED
            vec <<= 1;
517
        }
518
    }
519
520
    private void bsSetStream(OutputStream f) {
521 1 1. bsSetStream : Removed assignment to member variable bsStream → KILLED
        bsStream = f;
522 6 1. bsSetStream : Substituted 0 with 1 → SURVIVED
2. bsSetStream : Removed assignment to member variable bsLive → SURVIVED
3. bsSetStream : Substituted 0 with 1 → SURVIVED
4. bsSetStream : Substituted 0 with -1 → SURVIVED
5. bsSetStream : Substituted 0 with 1 → SURVIVED
6. bsSetStream : Substituted 0 with -1 → SURVIVED
        bsLive = 0;
523 6 1. bsSetStream : Substituted 0 with 1 → SURVIVED
2. bsSetStream : Removed assignment to member variable bsBuff → SURVIVED
3. bsSetStream : Substituted 0 with 1 → SURVIVED
4. bsSetStream : Substituted 0 with -1 → SURVIVED
5. bsSetStream : Substituted 0 with 1 → SURVIVED
6. bsSetStream : Substituted 0 with -1 → SURVIVED
        bsBuff = 0;
524 6 1. bsSetStream : Substituted 0 with 1 → SURVIVED
2. bsSetStream : Removed assignment to member variable bytesOut → SURVIVED
3. bsSetStream : Substituted 0 with 1 → SURVIVED
4. bsSetStream : Substituted 0 with -1 → SURVIVED
5. bsSetStream : Substituted 0 with 1 → SURVIVED
6. bsSetStream : Substituted 0 with -1 → SURVIVED
        bytesOut = 0;
525
    }
526
527
    private void bsFinishedWithStream() throws IOException {
528 14 1. bsFinishedWithStream : changed conditional boundary → SURVIVED
2. bsFinishedWithStream : negated conditional → SURVIVED
3. bsFinishedWithStream : removed conditional - replaced comparison check with false → SURVIVED
4. bsFinishedWithStream : Negated integer field bsLive → SURVIVED
5. bsFinishedWithStream : Less or equal to less than → SURVIVED
6. bsFinishedWithStream : Less or equal to greater than → SURVIVED
7. bsFinishedWithStream : Less or equal to greater or equal → SURVIVED
8. bsFinishedWithStream : Less or equal to not equal → SURVIVED
9. bsFinishedWithStream : Incremented (a++) integer field bsLive → SURVIVED
10. bsFinishedWithStream : Decremented (a--) integer field bsLive → SURVIVED
11. bsFinishedWithStream : Incremented (++a) integer field bsLive → SURVIVED
12. bsFinishedWithStream : Decremented (--a) integer fieldbsLive → SURVIVED
13. bsFinishedWithStream : removed conditional - replaced comparison check with true → TIMED_OUT
14. bsFinishedWithStream : Less or equal to equal → TIMED_OUT
        while (bsLive > 0) {
529 13 1. bsFinishedWithStream : Substituted 24 with 25 → SURVIVED
2. bsFinishedWithStream : Replaced Shift Right with Shift Left → SURVIVED
3. bsFinishedWithStream : Negated integer field bsBuff → SURVIVED
4. bsFinishedWithStream : Substituted 24 with 1 → SURVIVED
5. bsFinishedWithStream : Substituted 24 with 0 → SURVIVED
6. bsFinishedWithStream : Substituted 24 with -1 → SURVIVED
7. bsFinishedWithStream : Substituted 24 with -24 → SURVIVED
8. bsFinishedWithStream : Substituted 24 with 25 → SURVIVED
9. bsFinishedWithStream : Substituted 24 with 23 → SURVIVED
10. bsFinishedWithStream : Incremented (a++) integer field bsBuff → SURVIVED
11. bsFinishedWithStream : Decremented (a--) integer field bsBuff → SURVIVED
12. bsFinishedWithStream : Incremented (++a) integer field bsBuff → SURVIVED
13. bsFinishedWithStream : Decremented (--a) integer fieldbsBuff → SURVIVED
            int ch = (bsBuff >> 24);
530
            try {
531 6 1. bsFinishedWithStream : removed call to java/io/OutputStream::write → SURVIVED
2. bsFinishedWithStream : Negated integer local variable number 1 → SURVIVED
3. bsFinishedWithStream : Incremented (a++) integer local variable number 1 → SURVIVED
4. bsFinishedWithStream : Decremented (a--) integer local variable number 1 → SURVIVED
5. bsFinishedWithStream : Incremented (++a) integer local variable number 1 → SURVIVED
6. bsFinishedWithStream : Decremented (--a) integer local variable number 1 → SURVIVED
                bsStream.write(ch); // write 8-bit
532
            } catch (IOException e) {
533
                throw  e;
534
            }
535 14 1. bsFinishedWithStream : Substituted 8 with 9 → SURVIVED
2. bsFinishedWithStream : Replaced Shift Left with Shift Right → SURVIVED
3. bsFinishedWithStream : Removed assignment to member variable bsBuff → SURVIVED
4. bsFinishedWithStream : Negated integer field bsBuff → SURVIVED
5. bsFinishedWithStream : Substituted 8 with 1 → SURVIVED
6. bsFinishedWithStream : Substituted 8 with 0 → SURVIVED
7. bsFinishedWithStream : Substituted 8 with -1 → SURVIVED
8. bsFinishedWithStream : Substituted 8 with -8 → SURVIVED
9. bsFinishedWithStream : Substituted 8 with 9 → SURVIVED
10. bsFinishedWithStream : Substituted 8 with 7 → SURVIVED
11. bsFinishedWithStream : Incremented (a++) integer field bsBuff → SURVIVED
12. bsFinishedWithStream : Decremented (a--) integer field bsBuff → SURVIVED
13. bsFinishedWithStream : Incremented (++a) integer field bsBuff → SURVIVED
14. bsFinishedWithStream : Decremented (--a) integer fieldbsBuff → SURVIVED
            bsBuff <<= 8;
536 20 1. bsFinishedWithStream : Substituted 8 with 9 → SURVIVED
2. bsFinishedWithStream : Negated integer field bsLive → SURVIVED
3. bsFinishedWithStream : Replaced integer subtraction with multiplication → SURVIVED
4. bsFinishedWithStream : Replaced integer subtraction with division → SURVIVED
5. bsFinishedWithStream : Substituted 8 with 1 → SURVIVED
6. bsFinishedWithStream : Substituted 8 with 9 → SURVIVED
7. bsFinishedWithStream : Substituted 8 with 7 → SURVIVED
8. bsFinishedWithStream : Incremented (a++) integer field bsLive → SURVIVED
9. bsFinishedWithStream : Decremented (a--) integer field bsLive → SURVIVED
10. bsFinishedWithStream : Incremented (++a) integer field bsLive → SURVIVED
11. bsFinishedWithStream : Decremented (--a) integer fieldbsLive → SURVIVED
12. bsFinishedWithStream : Replaced integer subtraction with addition → TIMED_OUT
13. bsFinishedWithStream : Removed assignment to member variable bsLive → TIMED_OUT
14. bsFinishedWithStream : Replaced integer operation with first member → TIMED_OUT
15. bsFinishedWithStream : Replaced integer operation by second member → TIMED_OUT
16. bsFinishedWithStream : Replaced integer subtraction with addition → TIMED_OUT
17. bsFinishedWithStream : Replaced integer subtraction with modulus → TIMED_OUT
18. bsFinishedWithStream : Substituted 8 with 0 → TIMED_OUT
19. bsFinishedWithStream : Substituted 8 with -1 → TIMED_OUT
20. bsFinishedWithStream : Substituted 8 with -8 → TIMED_OUT
            bsLive -= 8;
537 19 1. bsFinishedWithStream : Substituted 1 with 0 → SURVIVED
2. bsFinishedWithStream : Replaced integer addition with subtraction → SURVIVED
3. bsFinishedWithStream : Removed assignment to member variable bytesOut → SURVIVED
4. bsFinishedWithStream : Negated integer field bytesOut → SURVIVED
5. bsFinishedWithStream : Replaced integer operation with first member → SURVIVED
6. bsFinishedWithStream : Replaced integer operation by second member → SURVIVED
7. bsFinishedWithStream : Replaced integer addition with subtraction → SURVIVED
8. bsFinishedWithStream : Replaced integer addition with multiplication → SURVIVED
9. bsFinishedWithStream : Replaced integer addition with division → SURVIVED
10. bsFinishedWithStream : Replaced integer addition with modulus → SURVIVED
11. bsFinishedWithStream : Substituted 1 with 0 → SURVIVED
12. bsFinishedWithStream : Substituted 1 with -1 → SURVIVED
13. bsFinishedWithStream : Substituted 1 with -1 → SURVIVED
14. bsFinishedWithStream : Substituted 1 with 2 → SURVIVED
15. bsFinishedWithStream : Substituted 1 with 0 → SURVIVED
16. bsFinishedWithStream : Incremented (a++) integer field bytesOut → SURVIVED
17. bsFinishedWithStream : Decremented (a--) integer field bytesOut → SURVIVED
18. bsFinishedWithStream : Incremented (++a) integer field bytesOut → SURVIVED
19. bsFinishedWithStream : Decremented (--a) integer fieldbytesOut → SURVIVED
            bytesOut++;
538
        }
539
    }
540
541
    private void bsW(int n, int v) throws IOException {
542 21 1. bsW : changed conditional boundary → SURVIVED
2. bsW : Substituted 8 with 9 → SURVIVED
3. bsW : removed conditional - replaced comparison check with false → SURVIVED
4. bsW : Negated integer field bsLive → SURVIVED
5. bsW : Substituted 8 with 1 → SURVIVED
6. bsW : Substituted 8 with 0 → SURVIVED
7. bsW : Substituted 8 with -1 → SURVIVED
8. bsW : Substituted 8 with -8 → SURVIVED
9. bsW : Substituted 8 with 9 → SURVIVED
10. bsW : Substituted 8 with 7 → SURVIVED
11. bsW : Less than to less or equal → SURVIVED
12. bsW : Less than to not equal → SURVIVED
13. bsW : Incremented (a++) integer field bsLive → SURVIVED
14. bsW : Decremented (a--) integer field bsLive → SURVIVED
15. bsW : Incremented (++a) integer field bsLive → SURVIVED
16. bsW : Decremented (--a) integer fieldbsLive → SURVIVED
17. bsW : negated conditional → TIMED_OUT
18. bsW : removed conditional - replaced comparison check with true → TIMED_OUT
19. bsW : Less than to greater than → TIMED_OUT
20. bsW : Less than to greater or equal → TIMED_OUT
21. bsW : Less than to equal → TIMED_OUT
        while (bsLive >= 8) {
543 13 1. bsW : Substituted 24 with 25 → SURVIVED
2. bsW : Replaced Shift Right with Shift Left → SURVIVED
3. bsW : Negated integer field bsBuff → SURVIVED
4. bsW : Substituted 24 with 1 → SURVIVED
5. bsW : Substituted 24 with 0 → SURVIVED
6. bsW : Substituted 24 with -1 → SURVIVED
7. bsW : Substituted 24 with -24 → SURVIVED
8. bsW : Substituted 24 with 25 → SURVIVED
9. bsW : Substituted 24 with 23 → SURVIVED
10. bsW : Incremented (a++) integer field bsBuff → SURVIVED
11. bsW : Decremented (a--) integer field bsBuff → SURVIVED
12. bsW : Incremented (++a) integer field bsBuff → SURVIVED
13. bsW : Decremented (--a) integer fieldbsBuff → SURVIVED
            int ch = (bsBuff >> 24);
544
            try {
545 6 1. bsW : removed call to java/io/OutputStream::write → SURVIVED
2. bsW : Negated integer local variable number 3 → SURVIVED
3. bsW : Incremented (a++) integer local variable number 3 → SURVIVED
4. bsW : Decremented (a--) integer local variable number 3 → SURVIVED
5. bsW : Incremented (++a) integer local variable number 3 → SURVIVED
6. bsW : Decremented (--a) integer local variable number 3 → SURVIVED
                bsStream.write(ch); // write 8-bit
546
            } catch (IOException e) {
547
                throw e;
548
            }
549 14 1. bsW : Substituted 8 with 9 → SURVIVED
2. bsW : Replaced Shift Left with Shift Right → SURVIVED
3. bsW : Removed assignment to member variable bsBuff → SURVIVED
4. bsW : Negated integer field bsBuff → SURVIVED
5. bsW : Substituted 8 with 1 → SURVIVED
6. bsW : Substituted 8 with 0 → SURVIVED
7. bsW : Substituted 8 with -1 → SURVIVED
8. bsW : Substituted 8 with -8 → SURVIVED
9. bsW : Substituted 8 with 9 → SURVIVED
10. bsW : Substituted 8 with 7 → SURVIVED
11. bsW : Incremented (a++) integer field bsBuff → SURVIVED
12. bsW : Decremented (a--) integer field bsBuff → SURVIVED
13. bsW : Incremented (++a) integer field bsBuff → SURVIVED
14. bsW : Decremented (--a) integer fieldbsBuff → SURVIVED
            bsBuff <<= 8;
550 20 1. bsW : Substituted 8 with 9 → SURVIVED
2. bsW : Negated integer field bsLive → SURVIVED
3. bsW : Replaced integer subtraction with multiplication → SURVIVED
4. bsW : Replaced integer subtraction with division → SURVIVED
5. bsW : Replaced integer subtraction with modulus → SURVIVED
6. bsW : Substituted 8 with 1 → SURVIVED
7. bsW : Substituted 8 with 9 → SURVIVED
8. bsW : Substituted 8 with 7 → SURVIVED
9. bsW : Incremented (a++) integer field bsLive → SURVIVED
10. bsW : Decremented (a--) integer field bsLive → SURVIVED
11. bsW : Incremented (++a) integer field bsLive → SURVIVED
12. bsW : Decremented (--a) integer fieldbsLive → SURVIVED
13. bsW : Replaced integer subtraction with addition → TIMED_OUT
14. bsW : Removed assignment to member variable bsLive → TIMED_OUT
15. bsW : Replaced integer operation with first member → TIMED_OUT
16. bsW : Replaced integer operation by second member → TIMED_OUT
17. bsW : Replaced integer subtraction with addition → TIMED_OUT
18. bsW : Substituted 8 with 0 → TIMED_OUT
19. bsW : Substituted 8 with -1 → TIMED_OUT
20. bsW : Substituted 8 with -8 → TIMED_OUT
            bsLive -= 8;
551 19 1. bsW : Substituted 1 with 0 → SURVIVED
2. bsW : Replaced integer addition with subtraction → SURVIVED
3. bsW : Removed assignment to member variable bytesOut → SURVIVED
4. bsW : Negated integer field bytesOut → SURVIVED
5. bsW : Replaced integer operation with first member → SURVIVED
6. bsW : Replaced integer operation by second member → SURVIVED
7. bsW : Replaced integer addition with subtraction → SURVIVED
8. bsW : Replaced integer addition with multiplication → SURVIVED
9. bsW : Replaced integer addition with division → SURVIVED
10. bsW : Replaced integer addition with modulus → SURVIVED
11. bsW : Substituted 1 with 0 → SURVIVED
12. bsW : Substituted 1 with -1 → SURVIVED
13. bsW : Substituted 1 with -1 → SURVIVED
14. bsW : Substituted 1 with 2 → SURVIVED
15. bsW : Substituted 1 with 0 → SURVIVED
16. bsW : Incremented (a++) integer field bytesOut → SURVIVED
17. bsW : Decremented (a--) integer field bytesOut → SURVIVED
18. bsW : Incremented (++a) integer field bytesOut → SURVIVED
19. bsW : Decremented (--a) integer fieldbytesOut → SURVIVED
            bytesOut++;
552
        }
553 47 1. bsW : Substituted 32 with 33 → SURVIVED
2. bsW : Replaced integer subtraction with addition → SURVIVED
3. bsW : Replaced integer subtraction with addition → SURVIVED
4. bsW : Replaced Shift Left with Shift Right → SURVIVED
5. bsW : Replaced bitwise OR with AND → SURVIVED
6. bsW : Removed assignment to member variable bsBuff → SURVIVED
7. bsW : Negated integer field bsBuff → SURVIVED
8. bsW : Negated integer local variable number 2 → SURVIVED
9. bsW : Negated integer field bsLive → SURVIVED
10. bsW : Negated integer local variable number 1 → SURVIVED
11. bsW : Replaced integer operation with first member → SURVIVED
12. bsW : Replaced integer operation with first member → SURVIVED
13. bsW : Replaced integer operation by second member → SURVIVED
14. bsW : Replaced integer operation by second member → SURVIVED
15. bsW : Replaced integer subtraction with addition → SURVIVED
16. bsW : Replaced integer subtraction with addition → SURVIVED
17. bsW : Replaced integer subtraction with multiplication → SURVIVED
18. bsW : Replaced integer subtraction with multiplication → SURVIVED
19. bsW : Replaced integer subtraction with division → SURVIVED
20. bsW : Replaced integer subtraction with modulus → SURVIVED
21. bsW : Substituted 32 with 1 → SURVIVED
22. bsW : Substituted 32 with 0 → SURVIVED
23. bsW : Substituted 32 with -1 → SURVIVED
24. bsW : Substituted 32 with -32 → SURVIVED
25. bsW : Substituted 32 with 33 → SURVIVED
26. bsW : Substituted 32 with 31 → SURVIVED
27. bsW : Replaced integer or with and → SURVIVED
28. bsW : Replaced integer or by first member → SURVIVED
29. bsW : Replace integer or by second member → SURVIVED
30. bsW : Incremented (a++) integer field bsBuff → SURVIVED
31. bsW : Incremented (a++) integer local variable number 2 → SURVIVED
32. bsW : Incremented (a++) integer field bsLive → SURVIVED
33. bsW : Incremented (a++) integer local variable number 1 → SURVIVED
34. bsW : Decremented (a--) integer field bsBuff → SURVIVED
35. bsW : Decremented (a--) integer local variable number 2 → SURVIVED
36. bsW : Decremented (a--) integer field bsLive → SURVIVED
37. bsW : Decremented (a--) integer local variable number 1 → SURVIVED
38. bsW : Incremented (++a) integer field bsBuff → SURVIVED
39. bsW : Incremented (++a) integer local variable number 2 → SURVIVED
40. bsW : Incremented (++a) integer field bsLive → SURVIVED
41. bsW : Incremented (++a) integer local variable number 1 → SURVIVED
42. bsW : Decremented (--a) integer fieldbsBuff → SURVIVED
43. bsW : Decremented (--a) integer local variable number 2 → SURVIVED
44. bsW : Decremented (--a) integer fieldbsLive → SURVIVED
45. bsW : Decremented (--a) integer local variable number 1 → SURVIVED
46. bsW : Replaced integer subtraction with division → KILLED
47. bsW : Replaced integer subtraction with modulus → KILLED
        bsBuff |= (v << (32 - bsLive - n));
554 18 1. bsW : Replaced integer addition with subtraction → SURVIVED
2. bsW : Removed assignment to member variable bsLive → SURVIVED
3. bsW : Negated integer field bsLive → SURVIVED
4. bsW : Negated integer local variable number 1 → SURVIVED
5. bsW : Replaced integer operation with first member → SURVIVED
6. bsW : Replaced integer operation by second member → SURVIVED
7. bsW : Replaced integer addition with subtraction → SURVIVED
8. bsW : Replaced integer addition with multiplication → SURVIVED
9. bsW : Replaced integer addition with division → SURVIVED
10. bsW : Replaced integer addition with modulus → SURVIVED
11. bsW : Incremented (a++) integer field bsLive → SURVIVED
12. bsW : Incremented (a++) integer local variable number 1 → SURVIVED
13. bsW : Decremented (a--) integer field bsLive → SURVIVED
14. bsW : Decremented (a--) integer local variable number 1 → SURVIVED
15. bsW : Incremented (++a) integer field bsLive → SURVIVED
16. bsW : Incremented (++a) integer local variable number 1 → SURVIVED
17. bsW : Decremented (--a) integer fieldbsLive → SURVIVED
18. bsW : Decremented (--a) integer local variable number 1 → SURVIVED
        bsLive += n;
555
    }
556
557
    private void bsPutUChar(int c) throws IOException {
558 13 1. bsPutUChar : Substituted 8 with 9 → SURVIVED
2. bsPutUChar : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
3. bsPutUChar : Negated integer local variable number 1 → SURVIVED
4. bsPutUChar : Substituted 8 with 1 → SURVIVED
5. bsPutUChar : Substituted 8 with 0 → SURVIVED
6. bsPutUChar : Substituted 8 with -1 → SURVIVED
7. bsPutUChar : Substituted 8 with -8 → SURVIVED
8. bsPutUChar : Substituted 8 with 9 → SURVIVED
9. bsPutUChar : Substituted 8 with 7 → SURVIVED
10. bsPutUChar : Incremented (a++) integer local variable number 1 → SURVIVED
11. bsPutUChar : Decremented (a--) integer local variable number 1 → SURVIVED
12. bsPutUChar : Incremented (++a) integer local variable number 1 → SURVIVED
13. bsPutUChar : Decremented (--a) integer local variable number 1 → SURVIVED
        bsW(8, c);
559
    }
560
561
    private void bsPutint(int u) throws IOException {
562 32 1. bsPutint : Substituted 8 with 9 → SURVIVED
2. bsPutint : Substituted 24 with 25 → SURVIVED
3. bsPutint : Substituted 255 with 256 → SURVIVED
4. bsPutint : Replaced Shift Right with Shift Left → SURVIVED
5. bsPutint : Replaced bitwise AND with OR → SURVIVED
6. bsPutint : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
7. bsPutint : Negated integer local variable number 1 → SURVIVED
8. bsPutint : Substituted 8 with 1 → SURVIVED
9. bsPutint : Substituted 24 with 1 → SURVIVED
10. bsPutint : Substituted 255 with 1 → SURVIVED
11. bsPutint : Substituted 8 with 0 → SURVIVED
12. bsPutint : Substituted 24 with 0 → SURVIVED
13. bsPutint : Substituted 255 with 0 → SURVIVED
14. bsPutint : Substituted 8 with -1 → SURVIVED
15. bsPutint : Substituted 24 with -1 → SURVIVED
16. bsPutint : Substituted 255 with -1 → SURVIVED
17. bsPutint : Substituted 8 with -8 → SURVIVED
18. bsPutint : Substituted 24 with -24 → SURVIVED
19. bsPutint : Substituted 255 with -255 → SURVIVED
20. bsPutint : Substituted 8 with 9 → SURVIVED
21. bsPutint : Substituted 24 with 25 → SURVIVED
22. bsPutint : Substituted 255 with 256 → SURVIVED
23. bsPutint : Substituted 8 with 7 → SURVIVED
24. bsPutint : Substituted 24 with 23 → SURVIVED
25. bsPutint : Substituted 255 with 254 → SURVIVED
26. bsPutint : Replaced integer and with or → SURVIVED
27. bsPutint : Replaced integer and by first member → SURVIVED
28. bsPutint : Replace integer and by second member → SURVIVED
29. bsPutint : Incremented (a++) integer local variable number 1 → SURVIVED
30. bsPutint : Decremented (a--) integer local variable number 1 → SURVIVED
31. bsPutint : Incremented (++a) integer local variable number 1 → SURVIVED
32. bsPutint : Decremented (--a) integer local variable number 1 → SURVIVED
        bsW(8, (u >> 24) & 0xff);
563 32 1. bsPutint : Substituted 8 with 9 → SURVIVED
2. bsPutint : Substituted 16 with 17 → SURVIVED
3. bsPutint : Substituted 255 with 256 → SURVIVED
4. bsPutint : Replaced Shift Right with Shift Left → SURVIVED
5. bsPutint : Replaced bitwise AND with OR → SURVIVED
6. bsPutint : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
7. bsPutint : Negated integer local variable number 1 → SURVIVED
8. bsPutint : Substituted 8 with 1 → SURVIVED
9. bsPutint : Substituted 16 with 1 → SURVIVED
10. bsPutint : Substituted 255 with 1 → SURVIVED
11. bsPutint : Substituted 8 with 0 → SURVIVED
12. bsPutint : Substituted 16 with 0 → SURVIVED
13. bsPutint : Substituted 255 with 0 → SURVIVED
14. bsPutint : Substituted 8 with -1 → SURVIVED
15. bsPutint : Substituted 16 with -1 → SURVIVED
16. bsPutint : Substituted 255 with -1 → SURVIVED
17. bsPutint : Substituted 8 with -8 → SURVIVED
18. bsPutint : Substituted 16 with -16 → SURVIVED
19. bsPutint : Substituted 255 with -255 → SURVIVED
20. bsPutint : Substituted 8 with 9 → SURVIVED
21. bsPutint : Substituted 16 with 17 → SURVIVED
22. bsPutint : Substituted 255 with 256 → SURVIVED
23. bsPutint : Substituted 8 with 7 → SURVIVED
24. bsPutint : Substituted 16 with 15 → SURVIVED
25. bsPutint : Substituted 255 with 254 → SURVIVED
26. bsPutint : Replaced integer and with or → SURVIVED
27. bsPutint : Replaced integer and by first member → SURVIVED
28. bsPutint : Replace integer and by second member → SURVIVED
29. bsPutint : Incremented (a++) integer local variable number 1 → SURVIVED
30. bsPutint : Decremented (a--) integer local variable number 1 → SURVIVED
31. bsPutint : Incremented (++a) integer local variable number 1 → SURVIVED
32. bsPutint : Decremented (--a) integer local variable number 1 → SURVIVED
        bsW(8, (u >> 16) & 0xff);
564 32 1. bsPutint : Substituted 8 with 9 → SURVIVED
2. bsPutint : Substituted 8 with 9 → SURVIVED
3. bsPutint : Substituted 255 with 256 → SURVIVED
4. bsPutint : Replaced Shift Right with Shift Left → SURVIVED
5. bsPutint : Replaced bitwise AND with OR → SURVIVED
6. bsPutint : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
7. bsPutint : Negated integer local variable number 1 → SURVIVED
8. bsPutint : Substituted 8 with 1 → SURVIVED
9. bsPutint : Substituted 8 with 1 → SURVIVED
10. bsPutint : Substituted 255 with 1 → SURVIVED
11. bsPutint : Substituted 8 with 0 → SURVIVED
12. bsPutint : Substituted 8 with 0 → SURVIVED
13. bsPutint : Substituted 255 with 0 → SURVIVED
14. bsPutint : Substituted 8 with -1 → SURVIVED
15. bsPutint : Substituted 8 with -1 → SURVIVED
16. bsPutint : Substituted 255 with -1 → SURVIVED
17. bsPutint : Substituted 8 with -8 → SURVIVED
18. bsPutint : Substituted 8 with -8 → SURVIVED
19. bsPutint : Substituted 255 with -255 → SURVIVED
20. bsPutint : Substituted 8 with 9 → SURVIVED
21. bsPutint : Substituted 8 with 9 → SURVIVED
22. bsPutint : Substituted 255 with 256 → SURVIVED
23. bsPutint : Substituted 8 with 7 → SURVIVED
24. bsPutint : Substituted 8 with 7 → SURVIVED
25. bsPutint : Substituted 255 with 254 → SURVIVED
26. bsPutint : Replaced integer and with or → SURVIVED
27. bsPutint : Replaced integer and by first member → SURVIVED
28. bsPutint : Replace integer and by second member → SURVIVED
29. bsPutint : Incremented (a++) integer local variable number 1 → SURVIVED
30. bsPutint : Decremented (a--) integer local variable number 1 → SURVIVED
31. bsPutint : Incremented (++a) integer local variable number 1 → SURVIVED
32. bsPutint : Decremented (--a) integer local variable number 1 → SURVIVED
        bsW(8, (u >>  8) & 0xff);
565 24 1. bsPutint : Substituted 8 with 9 → SURVIVED
2. bsPutint : Substituted 255 with 256 → SURVIVED
3. bsPutint : Replaced bitwise AND with OR → SURVIVED
4. bsPutint : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
5. bsPutint : Negated integer local variable number 1 → SURVIVED
6. bsPutint : Substituted 8 with 1 → SURVIVED
7. bsPutint : Substituted 255 with 1 → SURVIVED
8. bsPutint : Substituted 8 with 0 → SURVIVED
9. bsPutint : Substituted 255 with 0 → SURVIVED
10. bsPutint : Substituted 8 with -1 → SURVIVED
11. bsPutint : Substituted 255 with -1 → SURVIVED
12. bsPutint : Substituted 8 with -8 → SURVIVED
13. bsPutint : Substituted 255 with -255 → SURVIVED
14. bsPutint : Substituted 8 with 9 → SURVIVED
15. bsPutint : Substituted 255 with 256 → SURVIVED
16. bsPutint : Substituted 8 with 7 → SURVIVED
17. bsPutint : Substituted 255 with 254 → SURVIVED
18. bsPutint : Replaced integer and with or → SURVIVED
19. bsPutint : Replaced integer and by first member → SURVIVED
20. bsPutint : Replace integer and by second member → SURVIVED
21. bsPutint : Incremented (a++) integer local variable number 1 → SURVIVED
22. bsPutint : Decremented (a--) integer local variable number 1 → SURVIVED
23. bsPutint : Incremented (++a) integer local variable number 1 → SURVIVED
24. bsPutint : Decremented (--a) integer local variable number 1 → SURVIVED
        bsW(8,  u        & 0xff);
566
    }
567
568
    private void bsPutIntVS(int numBits, int c) throws IOException {
569 11 1. bsPutIntVS : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
2. bsPutIntVS : Negated integer local variable number 1 → SURVIVED
3. bsPutIntVS : Negated integer local variable number 2 → SURVIVED
4. bsPutIntVS : Incremented (a++) integer local variable number 1 → SURVIVED
5. bsPutIntVS : Incremented (a++) integer local variable number 2 → SURVIVED
6. bsPutIntVS : Decremented (a--) integer local variable number 1 → SURVIVED
7. bsPutIntVS : Decremented (a--) integer local variable number 2 → SURVIVED
8. bsPutIntVS : Incremented (++a) integer local variable number 1 → SURVIVED
9. bsPutIntVS : Incremented (++a) integer local variable number 2 → SURVIVED
10. bsPutIntVS : Decremented (--a) integer local variable number 1 → SURVIVED
11. bsPutIntVS : Decremented (--a) integer local variable number 2 → SURVIVED
        bsW(numBits, c);
570
    }
571
572
    private void sendMTFValues() throws IOException {
573 14 1. sendMTFValues : Substituted 6 with 7 → SURVIVED
2. sendMTFValues : Substituted 258 with 259 → SURVIVED
3. sendMTFValues : Substituted 6 with 7 → SURVIVED
4. sendMTFValues : Substituted 258 with 259 → SURVIVED
5. sendMTFValues : Substituted 258 with 257 → SURVIVED
6. sendMTFValues : Substituted 6 with 1 → KILLED
7. sendMTFValues : Substituted 258 with 1 → KILLED
8. sendMTFValues : Substituted 6 with 0 → KILLED
9. sendMTFValues : Substituted 258 with 0 → KILLED
10. sendMTFValues : Substituted 6 with -1 → KILLED
11. sendMTFValues : Substituted 258 with -1 → KILLED
12. sendMTFValues : Substituted 6 with -6 → KILLED
13. sendMTFValues : Substituted 258 with -258 → KILLED
14. sendMTFValues : Substituted 6 with 5 → KILLED
        char len[][] = new char[N_GROUPS][MAX_ALPHA_SIZE];
574
575
        int v, t, i, j, gs, ge, totc, bt, bc, iter;
576 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with -1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 0 with -1 → SURVIVED
        int nSelectors = 0, alphaSize, minLen, maxLen, selCtr;
577
        int nGroups; //, nBytes;
578
579 19 1. sendMTFValues : Substituted 2 with 3 → SURVIVED
2. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
3. sendMTFValues : Negated integer field nInUse → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
7. sendMTFValues : Replaced integer addition with multiplication → SURVIVED
8. sendMTFValues : Replaced integer addition with division → SURVIVED
9. sendMTFValues : Replaced integer addition with modulus → SURVIVED
10. sendMTFValues : Substituted 2 with 1 → SURVIVED
11. sendMTFValues : Substituted 2 with 0 → SURVIVED
12. sendMTFValues : Substituted 2 with -1 → SURVIVED
13. sendMTFValues : Substituted 2 with -2 → SURVIVED
14. sendMTFValues : Substituted 2 with 3 → SURVIVED
15. sendMTFValues : Substituted 2 with 1 → SURVIVED
16. sendMTFValues : Incremented (a++) integer field nInUse → SURVIVED
17. sendMTFValues : Decremented (a--) integer field nInUse → SURVIVED
18. sendMTFValues : Incremented (++a) integer field nInUse → SURVIVED
19. sendMTFValues : Decremented (--a) integer fieldnInUse → SURVIVED
        alphaSize = nInUse + 2;
580 28 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 6 with 1 → SURVIVED
6. sendMTFValues : Substituted 6 with 0 → SURVIVED
7. sendMTFValues : Substituted 6 with -1 → SURVIVED
8. sendMTFValues : Substituted 6 with -6 → SURVIVED
9. sendMTFValues : Substituted 0 with 1 → SURVIVED
10. sendMTFValues : Substituted 6 with 5 → SURVIVED
11. sendMTFValues : greater or equal to less than → SURVIVED
12. sendMTFValues : greater or equal to less or equal → SURVIVED
13. sendMTFValues : greater or equal to equal → SURVIVED
14. sendMTFValues : greater or equal to not equal → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
17. sendMTFValues : Removed increment 1 → TIMED_OUT
18. sendMTFValues : changed conditional boundary → KILLED
19. sendMTFValues : Changed increment from 1 to -1 → KILLED
20. sendMTFValues : Substituted 6 with 7 → KILLED
21. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
22. sendMTFValues : Negated integer local variable number 4 → KILLED
23. sendMTFValues : Substituted 0 with -1 → KILLED
24. sendMTFValues : Substituted 6 with 7 → KILLED
25. sendMTFValues : Substituted 0 with -1 → KILLED
26. sendMTFValues : greater or equal to greater than → KILLED
27. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
28. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
        for (t = 0; t < N_GROUPS; t++) {
581 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 3 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
17. sendMTFValues : Changed increment from 1 to -1 → KILLED
18. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
19. sendMTFValues : Negated integer local variable number 5 → KILLED
20. sendMTFValues : Substituted 0 with -1 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Incremented (a++) integer local variable number 13 → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 2 → KILLED
24. sendMTFValues : Incremented (++a) integer local variable number 13 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
            for (v = 0; v < alphaSize; v++) {
582 17 1. sendMTFValues : Substituted 15 with 16 → SURVIVED
2. sendMTFValues : Substituted 15 with 1 → SURVIVED
3. sendMTFValues : Substituted 15 with 0 → SURVIVED
4. sendMTFValues : Substituted 15 with -1 → SURVIVED
5. sendMTFValues : Substituted 15 with -15 → SURVIVED
6. sendMTFValues : Substituted 15 with 16 → SURVIVED
7. sendMTFValues : Substituted 15 with 14 → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
9. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
10. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
11. sendMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
12. sendMTFValues : Negated integer local variable number 4 → KILLED
13. sendMTFValues : Negated integer local variable number 5 → KILLED
14. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
15. sendMTFValues : Incremented (++a) integer local variable number 3 → KILLED
16. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
17. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
                len[t][v] = (char) GREATER_ICOST;
583
            }
584
        }
585
586
        /* Decide how many coding tables to use */
587 14 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. sendMTFValues : Negated integer field nMTF → SURVIVED
6. sendMTFValues : greater than to less than → SURVIVED
7. sendMTFValues : greater than to less or equal → SURVIVED
8. sendMTFValues : greater than to greater or equal → SURVIVED
9. sendMTFValues : greater than to equal → SURVIVED
10. sendMTFValues : greater than to not equal → SURVIVED
11. sendMTFValues : Incremented (a++) integer field nMTF → SURVIVED
12. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
13. sendMTFValues : Incremented (++a) integer field nMTF → SURVIVED
14. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
        if (nMTF <= 0) {
588 1 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
            panic();
589
        }
590
591 21 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 200 with 201 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
6. sendMTFValues : Negated integer field nMTF → SURVIVED
7. sendMTFValues : Substituted 200 with 1 → SURVIVED
8. sendMTFValues : Substituted 200 with 0 → SURVIVED
9. sendMTFValues : Substituted 200 with -1 → SURVIVED
10. sendMTFValues : Substituted 200 with -200 → SURVIVED
11. sendMTFValues : Substituted 200 with 201 → SURVIVED
12. sendMTFValues : Substituted 200 with 199 → SURVIVED
13. sendMTFValues : greater or equal to less than → SURVIVED
14. sendMTFValues : greater or equal to less or equal → SURVIVED
15. sendMTFValues : greater or equal to greater than → SURVIVED
16. sendMTFValues : greater or equal to equal → SURVIVED
17. sendMTFValues : greater or equal to not equal → SURVIVED
18. sendMTFValues : Incremented (a++) integer field nMTF → SURVIVED
19. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
20. sendMTFValues : Incremented (++a) integer field nMTF → SURVIVED
21. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
        if (nMTF < 200) {
592 7 1. sendMTFValues : Substituted 2 with 3 → SURVIVED
2. sendMTFValues : Substituted 2 with 1 → SURVIVED
3. sendMTFValues : Substituted 2 with 3 → SURVIVED
4. sendMTFValues : Substituted 2 with 1 → SURVIVED
5. sendMTFValues : Substituted 2 with 0 → KILLED
6. sendMTFValues : Substituted 2 with -1 → KILLED
7. sendMTFValues : Substituted 2 with -2 → KILLED
            nGroups = 2;
593 21 1. sendMTFValues : changed conditional boundary → NO_COVERAGE
2. sendMTFValues : Substituted 600 with 601 → NO_COVERAGE
3. sendMTFValues : negated conditional → NO_COVERAGE
4. sendMTFValues : removed conditional - replaced comparison check with false → NO_COVERAGE
5. sendMTFValues : removed conditional - replaced comparison check with true → NO_COVERAGE
6. sendMTFValues : Negated integer field nMTF → NO_COVERAGE
7. sendMTFValues : Substituted 600 with 1 → NO_COVERAGE
8. sendMTFValues : Substituted 600 with 0 → NO_COVERAGE
9. sendMTFValues : Substituted 600 with -1 → NO_COVERAGE
10. sendMTFValues : Substituted 600 with -600 → NO_COVERAGE
11. sendMTFValues : Substituted 600 with 601 → NO_COVERAGE
12. sendMTFValues : Substituted 600 with 599 → NO_COVERAGE
13. sendMTFValues : greater or equal to less than → NO_COVERAGE
14. sendMTFValues : greater or equal to less or equal → NO_COVERAGE
15. sendMTFValues : greater or equal to greater than → NO_COVERAGE
16. sendMTFValues : greater or equal to equal → NO_COVERAGE
17. sendMTFValues : greater or equal to not equal → NO_COVERAGE
18. sendMTFValues : Incremented (a++) integer field nMTF → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer field nMTF → NO_COVERAGE
20. sendMTFValues : Incremented (++a) integer field nMTF → NO_COVERAGE
21. sendMTFValues : Decremented (--a) integer fieldnMTF → NO_COVERAGE
        } else if (nMTF < 600) {
594 7 1. sendMTFValues : Substituted 3 with 4 → NO_COVERAGE
2. sendMTFValues : Substituted 3 with 1 → NO_COVERAGE
3. sendMTFValues : Substituted 3 with 0 → NO_COVERAGE
4. sendMTFValues : Substituted 3 with -1 → NO_COVERAGE
5. sendMTFValues : Substituted 3 with -3 → NO_COVERAGE
6. sendMTFValues : Substituted 3 with 4 → NO_COVERAGE
7. sendMTFValues : Substituted 3 with 2 → NO_COVERAGE
            nGroups = 3;
595 21 1. sendMTFValues : changed conditional boundary → NO_COVERAGE
2. sendMTFValues : Substituted 1200 with 1201 → NO_COVERAGE
3. sendMTFValues : negated conditional → NO_COVERAGE
4. sendMTFValues : removed conditional - replaced comparison check with false → NO_COVERAGE
5. sendMTFValues : removed conditional - replaced comparison check with true → NO_COVERAGE
6. sendMTFValues : Negated integer field nMTF → NO_COVERAGE
7. sendMTFValues : Substituted 1200 with 1 → NO_COVERAGE
8. sendMTFValues : Substituted 1200 with 0 → NO_COVERAGE
9. sendMTFValues : Substituted 1200 with -1 → NO_COVERAGE
10. sendMTFValues : Substituted 1200 with -1200 → NO_COVERAGE
11. sendMTFValues : Substituted 1200 with 1201 → NO_COVERAGE
12. sendMTFValues : Substituted 1200 with 1199 → NO_COVERAGE
13. sendMTFValues : greater or equal to less than → NO_COVERAGE
14. sendMTFValues : greater or equal to less or equal → NO_COVERAGE
15. sendMTFValues : greater or equal to greater than → NO_COVERAGE
16. sendMTFValues : greater or equal to equal → NO_COVERAGE
17. sendMTFValues : greater or equal to not equal → NO_COVERAGE
18. sendMTFValues : Incremented (a++) integer field nMTF → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer field nMTF → NO_COVERAGE
20. sendMTFValues : Incremented (++a) integer field nMTF → NO_COVERAGE
21. sendMTFValues : Decremented (--a) integer fieldnMTF → NO_COVERAGE
        } else if (nMTF < 1200) {
596 7 1. sendMTFValues : Substituted 4 with 5 → NO_COVERAGE
2. sendMTFValues : Substituted 4 with 1 → NO_COVERAGE
3. sendMTFValues : Substituted 4 with 0 → NO_COVERAGE
4. sendMTFValues : Substituted 4 with -1 → NO_COVERAGE
5. sendMTFValues : Substituted 4 with -4 → NO_COVERAGE
6. sendMTFValues : Substituted 4 with 5 → NO_COVERAGE
7. sendMTFValues : Substituted 4 with 3 → NO_COVERAGE
            nGroups = 4;
597 21 1. sendMTFValues : changed conditional boundary → NO_COVERAGE
2. sendMTFValues : Substituted 2400 with 2401 → NO_COVERAGE
3. sendMTFValues : negated conditional → NO_COVERAGE
4. sendMTFValues : removed conditional - replaced comparison check with false → NO_COVERAGE
5. sendMTFValues : removed conditional - replaced comparison check with true → NO_COVERAGE
6. sendMTFValues : Negated integer field nMTF → NO_COVERAGE
7. sendMTFValues : Substituted 2400 with 1 → NO_COVERAGE
8. sendMTFValues : Substituted 2400 with 0 → NO_COVERAGE
9. sendMTFValues : Substituted 2400 with -1 → NO_COVERAGE
10. sendMTFValues : Substituted 2400 with -2400 → NO_COVERAGE
11. sendMTFValues : Substituted 2400 with 2401 → NO_COVERAGE
12. sendMTFValues : Substituted 2400 with 2399 → NO_COVERAGE
13. sendMTFValues : greater or equal to less than → NO_COVERAGE
14. sendMTFValues : greater or equal to less or equal → NO_COVERAGE
15. sendMTFValues : greater or equal to greater than → NO_COVERAGE
16. sendMTFValues : greater or equal to equal → NO_COVERAGE
17. sendMTFValues : greater or equal to not equal → NO_COVERAGE
18. sendMTFValues : Incremented (a++) integer field nMTF → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer field nMTF → NO_COVERAGE
20. sendMTFValues : Incremented (++a) integer field nMTF → NO_COVERAGE
21. sendMTFValues : Decremented (--a) integer fieldnMTF → NO_COVERAGE
        } else if (nMTF < 2400) {
598 7 1. sendMTFValues : Substituted 5 with 6 → NO_COVERAGE
2. sendMTFValues : Substituted 5 with 1 → NO_COVERAGE
3. sendMTFValues : Substituted 5 with 0 → NO_COVERAGE
4. sendMTFValues : Substituted 5 with -1 → NO_COVERAGE
5. sendMTFValues : Substituted 5 with -5 → NO_COVERAGE
6. sendMTFValues : Substituted 5 with 6 → NO_COVERAGE
7. sendMTFValues : Substituted 5 with 4 → NO_COVERAGE
            nGroups = 5;
599
        } else {
600 7 1. sendMTFValues : Substituted 6 with 7 → NO_COVERAGE
2. sendMTFValues : Substituted 6 with 1 → NO_COVERAGE
3. sendMTFValues : Substituted 6 with 0 → NO_COVERAGE
4. sendMTFValues : Substituted 6 with -1 → NO_COVERAGE
5. sendMTFValues : Substituted 6 with -6 → NO_COVERAGE
6. sendMTFValues : Substituted 6 with 7 → NO_COVERAGE
7. sendMTFValues : Substituted 6 with 5 → NO_COVERAGE
            nGroups = 6;
601
        }
602
603
        /* Generate an initial set of coding tables */ {
604
            int nPart, remF, tFreq, aFreq;
605
606 5 1. sendMTFValues : Negated integer local variable number 6 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 17 → SURVIVED
3. sendMTFValues : Decremented (a--) integer local variable number 17 → SURVIVED
4. sendMTFValues : Incremented (++a) integer local variable number 17 → SURVIVED
5. sendMTFValues : Decremented (--a) integer local variable number 17 → SURVIVED
            nPart = nGroups;
607 5 1. sendMTFValues : Negated integer field nMTF → SURVIVED
2. sendMTFValues : Incremented (a++) integer field nMTF → SURVIVED
3. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
4. sendMTFValues : Incremented (++a) integer field nMTF → SURVIVED
5. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
            remF  = nMTF;
608 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with -1 → KILLED
5. sendMTFValues : Substituted 0 with -1 → KILLED
            gs = 0;
609 14 1. sendMTFValues : negated conditional → SURVIVED
2. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
3. sendMTFValues : Negated integer local variable number 7 → SURVIVED
4. sendMTFValues : Less or equal to greater than → SURVIVED
5. sendMTFValues : Less or equal to greater or equal → SURVIVED
6. sendMTFValues : Less or equal to equal → SURVIVED
7. sendMTFValues : Less or equal to not equal → SURVIVED
8. sendMTFValues : Decremented (a--) integer local variable number 18 → SURVIVED
9. sendMTFValues : Decremented (--a) integer local variable number 18 → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 18 → TIMED_OUT
11. sendMTFValues : Incremented (++a) integer local variable number 18 → TIMED_OUT
12. sendMTFValues : changed conditional boundary → KILLED
13. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
14. sendMTFValues : Less or equal to less than → KILLED
            while (nPart > 0) {
610 17 1. sendMTFValues : Replaced integer division with multiplication → SURVIVED
2. sendMTFValues : Negated integer local variable number 8 → SURVIVED
3. sendMTFValues : Negated integer local variable number 7 → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer division with multiplication → SURVIVED
7. sendMTFValues : Replaced integer division with modulus → SURVIVED
8. sendMTFValues : Replaced integer division with addition → SURVIVED
9. sendMTFValues : Replaced integer division with subtraction → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 19 → SURVIVED
11. sendMTFValues : Decremented (a--) integer local variable number 19 → SURVIVED
12. sendMTFValues : Decremented (a--) integer local variable number 18 → SURVIVED
13. sendMTFValues : Incremented (++a) integer local variable number 19 → SURVIVED
14. sendMTFValues : Decremented (--a) integer local variable number 19 → SURVIVED
15. sendMTFValues : Decremented (--a) integer local variable number 18 → SURVIVED
16. sendMTFValues : Incremented (a++) integer local variable number 18 → TIMED_OUT
17. sendMTFValues : Incremented (++a) integer local variable number 18 → TIMED_OUT
                tFreq = remF / nPart;
611 18 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
3. sendMTFValues : Replaced integer operation with first member → SURVIVED
4. sendMTFValues : Replaced integer operation by second member → SURVIVED
5. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
6. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
7. sendMTFValues : Replaced integer subtraction with division → SURVIVED
8. sendMTFValues : Replaced integer subtraction with modulus → SURVIVED
9. sendMTFValues : Substituted 1 with 0 → SURVIVED
10. sendMTFValues : Substituted 1 with -1 → SURVIVED
11. sendMTFValues : Substituted 1 with -1 → SURVIVED
12. sendMTFValues : Substituted 1 with 0 → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
16. sendMTFValues : Negated integer local variable number 9 → KILLED
17. sendMTFValues : Substituted 1 with 2 → KILLED
18. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
                ge = gs - 1;
612 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with -1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 0 with -1 → SURVIVED
                aFreq = 0;
613 51 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : changed conditional boundary → SURVIVED
3. sendMTFValues : Substituted 1 with 0 → SURVIVED
4. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
5. sendMTFValues : negated conditional → SURVIVED
6. sendMTFValues : negated conditional → SURVIVED
7. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
8. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
9. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
10. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
11. sendMTFValues : Negated integer local variable number 12 → SURVIVED
12. sendMTFValues : Negated integer local variable number 10 → SURVIVED
13. sendMTFValues : Negated integer local variable number 11 → SURVIVED
14. sendMTFValues : Negated integer local variable number 3 → SURVIVED
15. sendMTFValues : Replaced integer operation with first member → SURVIVED
16. sendMTFValues : Replaced integer operation by second member → SURVIVED
17. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
18. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
19. sendMTFValues : Replaced integer subtraction with division → SURVIVED
20. sendMTFValues : Replaced integer subtraction with modulus → SURVIVED
21. sendMTFValues : Substituted 1 with 0 → SURVIVED
22. sendMTFValues : Substituted 1 with -1 → SURVIVED
23. sendMTFValues : Substituted 1 with -1 → SURVIVED
24. sendMTFValues : Substituted 1 with 2 → SURVIVED
25. sendMTFValues : Substituted 1 with 0 → SURVIVED
26. sendMTFValues : greater or equal to less than → SURVIVED
27. sendMTFValues : greater or equal to less than → SURVIVED
28. sendMTFValues : greater or equal to less or equal → SURVIVED
29. sendMTFValues : greater or equal to less or equal → SURVIVED
30. sendMTFValues : greater or equal to greater than → SURVIVED
31. sendMTFValues : greater or equal to greater than → SURVIVED
32. sendMTFValues : greater or equal to equal → SURVIVED
33. sendMTFValues : greater or equal to equal → SURVIVED
34. sendMTFValues : greater or equal to not equal → SURVIVED
35. sendMTFValues : greater or equal to not equal → SURVIVED
36. sendMTFValues : Incremented (a++) integer local variable number 21 → SURVIVED
37. sendMTFValues : Incremented (a++) integer local variable number 20 → SURVIVED
38. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
39. sendMTFValues : Incremented (a++) integer local variable number 13 → SURVIVED
40. sendMTFValues : Decremented (a--) integer local variable number 21 → SURVIVED
41. sendMTFValues : Decremented (a--) integer local variable number 20 → SURVIVED
42. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
43. sendMTFValues : Incremented (++a) integer local variable number 21 → SURVIVED
44. sendMTFValues : Incremented (++a) integer local variable number 20 → SURVIVED
45. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
46. sendMTFValues : Incremented (++a) integer local variable number 13 → SURVIVED
47. sendMTFValues : Decremented (--a) integer local variable number 21 → SURVIVED
48. sendMTFValues : Decremented (--a) integer local variable number 20 → SURVIVED
49. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
50. sendMTFValues : Decremented (a--) integer local variable number 7 → KILLED
51. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
                while (aFreq < tFreq && ge < alphaSize - 1) {
614 2 1. sendMTFValues : Changed increment from 1 to -1 → KILLED
2. sendMTFValues : Removed increment 1 → KILLED
                    ge++;
615 22 1. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
2. sendMTFValues : Negated integer local variable number 12 → SURVIVED
3. sendMTFValues : Negated integer array field → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
7. sendMTFValues : Replaced integer addition with multiplication → SURVIVED
8. sendMTFValues : Replaced integer addition with division → SURVIVED
9. sendMTFValues : Replaced integer addition with modulus → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 21 → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
12. sendMTFValues : Incremented (a++) integer array field → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 21 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
15. sendMTFValues : Decremented (a--) integer array field → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 21 → SURVIVED
17. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
18. sendMTFValues : Incremented (++a) integer array field → SURVIVED
19. sendMTFValues : Decremented (--a) integer local variable number 21 → SURVIVED
20. sendMTFValues : Decremented (--a) integer array field → SURVIVED
21. sendMTFValues : Negated integer local variable number 11 → KILLED
22. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
                    aFreq += mtfFreq[ge];
616
                }
617
618 95 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : Substituted 2 with 3 → NO_COVERAGE
4. sendMTFValues : Replaced integer subtraction with addition → NO_COVERAGE
5. sendMTFValues : Replaced integer modulus with multiplication → NO_COVERAGE
6. sendMTFValues : negated conditional → SURVIVED
7. sendMTFValues : negated conditional → SURVIVED
8. sendMTFValues : negated conditional → SURVIVED
9. sendMTFValues : negated conditional → NO_COVERAGE
10. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
11. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
12. sendMTFValues : removed conditional - replaced equality check with false → NO_COVERAGE
13. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
14. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
15. sendMTFValues : removed conditional - replaced equality check with true → NO_COVERAGE
16. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
17. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
18. sendMTFValues : Negated integer local variable number 11 → SURVIVED
19. sendMTFValues : Negated integer local variable number 9 → SURVIVED
20. sendMTFValues : Negated integer local variable number 7 → SURVIVED
21. sendMTFValues : Negated integer local variable number 6 → SURVIVED
22. sendMTFValues : Negated integer local variable number 7 → SURVIVED
23. sendMTFValues : Negated integer local variable number 6 → NO_COVERAGE
24. sendMTFValues : Negated integer local variable number 7 → NO_COVERAGE
25. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
26. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
27. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
28. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
29. sendMTFValues : Replaced integer subtraction with addition → NO_COVERAGE
30. sendMTFValues : Replaced integer modulus with multiplication → NO_COVERAGE
31. sendMTFValues : Replaced integer subtraction with multiplication → NO_COVERAGE
32. sendMTFValues : Replaced integer modulus with division → NO_COVERAGE
33. sendMTFValues : Replaced integer subtraction with division → NO_COVERAGE
34. sendMTFValues : Replaced integer modulus with addition → NO_COVERAGE
35. sendMTFValues : Replaced integer subtraction with modulus → NO_COVERAGE
36. sendMTFValues : Replaced integer modulus with subtraction → NO_COVERAGE
37. sendMTFValues : Substituted 2 with 1 → NO_COVERAGE
38. sendMTFValues : Substituted 1 with 0 → SURVIVED
39. sendMTFValues : Substituted 2 with 0 → NO_COVERAGE
40. sendMTFValues : Substituted 1 with -1 → SURVIVED
41. sendMTFValues : Substituted 2 with -1 → NO_COVERAGE
42. sendMTFValues : Substituted 1 with -1 → SURVIVED
43. sendMTFValues : Substituted 2 with -2 → NO_COVERAGE
44. sendMTFValues : Substituted 1 with 2 → SURVIVED
45. sendMTFValues : Substituted 2 with 3 → NO_COVERAGE
46. sendMTFValues : Substituted 1 with 0 → SURVIVED
47. sendMTFValues : Substituted 2 with 1 → NO_COVERAGE
48. sendMTFValues : Less or equal to less than → SURVIVED
49. sendMTFValues : equal to less than → SURVIVED
50. sendMTFValues : equal to less than → SURVIVED
51. sendMTFValues : equal to less than → NO_COVERAGE
52. sendMTFValues : Less or equal to greater than → SURVIVED
53. sendMTFValues : equal to less or equal → SURVIVED
54. sendMTFValues : equal to less or equal → SURVIVED
55. sendMTFValues : equal to less or equal → NO_COVERAGE
56. sendMTFValues : Less or equal to greater or equal → SURVIVED
57. sendMTFValues : equal to greater than → SURVIVED
58. sendMTFValues : equal to greater than → SURVIVED
59. sendMTFValues : equal to greater than → NO_COVERAGE
60. sendMTFValues : Less or equal to equal → SURVIVED
61. sendMTFValues : equal to greater or equal → SURVIVED
62. sendMTFValues : equal to greater or equal → SURVIVED
63. sendMTFValues : equal to greater or equal → NO_COVERAGE
64. sendMTFValues : Less or equal to not equal → SURVIVED
65. sendMTFValues : equal to not equal → SURVIVED
66. sendMTFValues : equal to not equal → SURVIVED
67. sendMTFValues : equal to not equal → NO_COVERAGE
68. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
69. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
70. sendMTFValues : Incremented (a++) integer local variable number 18 → SURVIVED
71. sendMTFValues : Incremented (a++) integer local variable number 17 → SURVIVED
72. sendMTFValues : Incremented (a++) integer local variable number 18 → SURVIVED
73. sendMTFValues : Incremented (a++) integer local variable number 17 → NO_COVERAGE
74. sendMTFValues : Incremented (a++) integer local variable number 18 → NO_COVERAGE
75. sendMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
76. sendMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
77. sendMTFValues : Decremented (a--) integer local variable number 18 → SURVIVED
78. sendMTFValues : Decremented (a--) integer local variable number 17 → NO_COVERAGE
79. sendMTFValues : Decremented (a--) integer local variable number 18 → NO_COVERAGE
80. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
81. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
82. sendMTFValues : Incremented (++a) integer local variable number 18 → SURVIVED
83. sendMTFValues : Incremented (++a) integer local variable number 17 → SURVIVED
84. sendMTFValues : Incremented (++a) integer local variable number 18 → SURVIVED
85. sendMTFValues : Incremented (++a) integer local variable number 17 → NO_COVERAGE
86. sendMTFValues : Incremented (++a) integer local variable number 18 → NO_COVERAGE
87. sendMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
88. sendMTFValues : Decremented (--a) integer local variable number 6 → SURVIVED
89. sendMTFValues : Decremented (--a) integer local variable number 18 → SURVIVED
90. sendMTFValues : Decremented (--a) integer local variable number 17 → NO_COVERAGE
91. sendMTFValues : Decremented (--a) integer local variable number 18 → NO_COVERAGE
92. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
93. sendMTFValues : Decremented (a--) integer local variable number 18 → KILLED
94. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
95. sendMTFValues : Decremented (--a) integer local variable number 18 → KILLED
                if (ge > gs && nPart != nGroups && nPart != 1
619
                    && ((nGroups - nPart) % 2 != 0)) {
620 22 1. sendMTFValues : Replaced integer subtraction with addition → NO_COVERAGE
2. sendMTFValues : Negated integer local variable number 12 → NO_COVERAGE
3. sendMTFValues : Negated integer local variable number 11 → NO_COVERAGE
4. sendMTFValues : Negated integer array field → NO_COVERAGE
5. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. sendMTFValues : Replaced integer subtraction with addition → NO_COVERAGE
8. sendMTFValues : Replaced integer subtraction with multiplication → NO_COVERAGE
9. sendMTFValues : Replaced integer subtraction with division → NO_COVERAGE
10. sendMTFValues : Replaced integer subtraction with modulus → NO_COVERAGE
11. sendMTFValues : Incremented (a++) integer local variable number 21 → NO_COVERAGE
12. sendMTFValues : Incremented (a++) integer local variable number 7 → NO_COVERAGE
13. sendMTFValues : Incremented (a++) integer array field → NO_COVERAGE
14. sendMTFValues : Decremented (a--) integer local variable number 21 → NO_COVERAGE
15. sendMTFValues : Decremented (a--) integer local variable number 7 → NO_COVERAGE
16. sendMTFValues : Decremented (a--) integer array field → NO_COVERAGE
17. sendMTFValues : Incremented (++a) integer local variable number 21 → NO_COVERAGE
18. sendMTFValues : Incremented (++a) integer local variable number 7 → NO_COVERAGE
19. sendMTFValues : Incremented (++a) integer array field → NO_COVERAGE
20. sendMTFValues : Decremented (--a) integer local variable number 21 → NO_COVERAGE
21. sendMTFValues : Decremented (--a) integer local variable number 7 → NO_COVERAGE
22. sendMTFValues : Decremented (--a) integer array field → NO_COVERAGE
                    aFreq -= mtfFreq[ge];
621 2 1. sendMTFValues : Changed increment from -1 to 1 → NO_COVERAGE
2. sendMTFValues : Removed increment -1 → NO_COVERAGE
                    ge--;
622
                }
623
624 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 3 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
17. sendMTFValues : Changed increment from 1 to -1 → KILLED
18. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
19. sendMTFValues : Negated integer local variable number 5 → KILLED
20. sendMTFValues : Substituted 0 with -1 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Incremented (a++) integer local variable number 13 → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 2 → KILLED
24. sendMTFValues : Incremented (++a) integer local variable number 13 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
                for (v = 0; v < alphaSize; v++) {
625 38 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : changed conditional boundary → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : negated conditional → SURVIVED
5. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
6. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
7. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
8. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
9. sendMTFValues : Negated integer local variable number 5 → SURVIVED
10. sendMTFValues : Negated integer local variable number 9 → SURVIVED
11. sendMTFValues : Negated integer local variable number 5 → SURVIVED
12. sendMTFValues : Negated integer local variable number 11 → SURVIVED
13. sendMTFValues : Less than to less or equal → SURVIVED
14. sendMTFValues : greater than to less than → SURVIVED
15. sendMTFValues : Less than to greater than → SURVIVED
16. sendMTFValues : greater than to less or equal → SURVIVED
17. sendMTFValues : Less than to greater or equal → SURVIVED
18. sendMTFValues : greater than to greater or equal → SURVIVED
19. sendMTFValues : Less than to equal → SURVIVED
20. sendMTFValues : greater than to equal → SURVIVED
21. sendMTFValues : Less than to not equal → SURVIVED
22. sendMTFValues : greater than to not equal → SURVIVED
23. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
24. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
25. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
26. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
27. sendMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
28. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
29. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
30. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
31. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
32. sendMTFValues : Decremented (--a) integer local variable number 6 → SURVIVED
33. sendMTFValues : Decremented (a--) integer local variable number 2 → KILLED
34. sendMTFValues : Decremented (a--) integer local variable number 2 → KILLED
35. sendMTFValues : Decremented (a--) integer local variable number 7 → KILLED
36. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
37. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
38. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
                    if (v >= gs && v <= ge) {
626 28 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
7. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
8. sendMTFValues : Replaced integer subtraction with division → SURVIVED
9. sendMTFValues : Replaced integer subtraction with modulus → SURVIVED
10. sendMTFValues : Substituted 0 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 1 with -1 → SURVIVED
13. sendMTFValues : Substituted 0 with -1 → SURVIVED
14. sendMTFValues : Substituted 1 with -1 → SURVIVED
15. sendMTFValues : Substituted 0 with 1 → SURVIVED
16. sendMTFValues : Substituted 1 with 0 → SURVIVED
17. sendMTFValues : Substituted 0 with -1 → SURVIVED
18. sendMTFValues : Incremented (a++) integer local variable number 18 → SURVIVED
19. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
20. sendMTFValues : Incremented (++a) integer local variable number 18 → SURVIVED
21. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
22. sendMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
23. sendMTFValues : Negated integer local variable number 7 → KILLED
24. sendMTFValues : Negated integer local variable number 5 → KILLED
25. sendMTFValues : Substituted 1 with 2 → KILLED
26. sendMTFValues : Decremented (a--) integer local variable number 18 → KILLED
27. sendMTFValues : Decremented (--a) integer local variable number 18 → KILLED
28. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
                        len[nPart - 1][v] = (char) LESSER_ICOST;
627
                    } else {
628 30 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 15 with 16 → SURVIVED
3. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
7. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
8. sendMTFValues : Replaced integer subtraction with division → SURVIVED
9. sendMTFValues : Replaced integer subtraction with modulus → SURVIVED
10. sendMTFValues : Substituted 15 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 15 with 0 → SURVIVED
13. sendMTFValues : Substituted 1 with -1 → SURVIVED
14. sendMTFValues : Substituted 15 with -1 → SURVIVED
15. sendMTFValues : Substituted 1 with -1 → SURVIVED
16. sendMTFValues : Substituted 15 with -15 → SURVIVED
17. sendMTFValues : Substituted 15 with 16 → SURVIVED
18. sendMTFValues : Substituted 1 with 0 → SURVIVED
19. sendMTFValues : Substituted 15 with 14 → SURVIVED
20. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
21. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
22. sendMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
23. sendMTFValues : Decremented (--a) integer local variable number 2 → TIMED_OUT
24. sendMTFValues : Negated integer local variable number 7 → KILLED
25. sendMTFValues : Negated integer local variable number 5 → KILLED
26. sendMTFValues : Substituted 1 with 2 → KILLED
27. sendMTFValues : Incremented (a++) integer local variable number 18 → KILLED
28. sendMTFValues : Decremented (a--) integer local variable number 18 → KILLED
29. sendMTFValues : Incremented (++a) integer local variable number 18 → KILLED
30. sendMTFValues : Decremented (--a) integer local variable number 18 → KILLED
                        len[nPart - 1][v] = (char) GREATER_ICOST;
629
                    }
630
                }
631
632 2 1. sendMTFValues : Removed increment -1 → TIMED_OUT
2. sendMTFValues : Changed increment from -1 to 1 → KILLED
                nPart--;
633 18 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
3. sendMTFValues : Negated integer local variable number 11 → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
7. sendMTFValues : Replaced integer addition with multiplication → SURVIVED
8. sendMTFValues : Replaced integer addition with division → SURVIVED
9. sendMTFValues : Replaced integer addition with modulus → SURVIVED
10. sendMTFValues : Substituted 1 with 0 → SURVIVED
11. sendMTFValues : Substituted 1 with -1 → SURVIVED
12. sendMTFValues : Substituted 1 with -1 → SURVIVED
13. sendMTFValues : Substituted 1 with 2 → SURVIVED
14. sendMTFValues : Substituted 1 with 0 → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
16. sendMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
17. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
18. sendMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
                gs = ge + 1;
634 17 1. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
2. sendMTFValues : Negated integer local variable number 8 → SURVIVED
3. sendMTFValues : Negated integer local variable number 12 → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
7. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
8. sendMTFValues : Replaced integer subtraction with division → SURVIVED
9. sendMTFValues : Replaced integer subtraction with modulus → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 19 → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 21 → SURVIVED
12. sendMTFValues : Decremented (a--) integer local variable number 19 → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 21 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 19 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 21 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 19 → SURVIVED
17. sendMTFValues : Decremented (--a) integer local variable number 21 → SURVIVED
                remF -= aFreq;
635
            }
636
        }
637
638 14 1. sendMTFValues : Substituted 6 with 7 → SURVIVED
2. sendMTFValues : Substituted 258 with 259 → SURVIVED
3. sendMTFValues : Substituted 6 with 7 → SURVIVED
4. sendMTFValues : Substituted 258 with 259 → SURVIVED
5. sendMTFValues : Substituted 6 with 5 → SURVIVED
6. sendMTFValues : Substituted 258 with 257 → SURVIVED
7. sendMTFValues : Substituted 6 with 1 → KILLED
8. sendMTFValues : Substituted 258 with 1 → KILLED
9. sendMTFValues : Substituted 6 with 0 → KILLED
10. sendMTFValues : Substituted 258 with 0 → KILLED
11. sendMTFValues : Substituted 6 with -1 → KILLED
12. sendMTFValues : Substituted 258 with -1 → KILLED
13. sendMTFValues : Substituted 6 with -6 → KILLED
14. sendMTFValues : Substituted 258 with -258 → KILLED
        int[][] rfreq = new int[N_GROUPS][MAX_ALPHA_SIZE];
639 7 1. sendMTFValues : Substituted 6 with 7 → SURVIVED
2. sendMTFValues : Substituted 6 with 7 → SURVIVED
3. sendMTFValues : Substituted 6 with 5 → SURVIVED
4. sendMTFValues : Substituted 6 with 1 → KILLED
5. sendMTFValues : Substituted 6 with 0 → KILLED
6. sendMTFValues : Substituted 6 with -1 → KILLED
7. sendMTFValues : Substituted 6 with -6 → KILLED
        int[] fave = new int[N_GROUPS];
640 7 1. sendMTFValues : Substituted 6 with 7 → SURVIVED
2. sendMTFValues : Substituted 6 with 7 → SURVIVED
3. sendMTFValues : Substituted 6 with 5 → SURVIVED
4. sendMTFValues : Substituted 6 with 1 → KILLED
5. sendMTFValues : Substituted 6 with 0 → KILLED
6. sendMTFValues : Substituted 6 with -1 → KILLED
7. sendMTFValues : Substituted 6 with -6 → KILLED
        short[] cost = new short[N_GROUPS];
641
        /*
642
          Iterate up to N_ITERS times to improve the tables.
643
        */
644 28 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 4 with 5 → SURVIVED
4. sendMTFValues : negated conditional → SURVIVED
5. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 4 with 1 → SURVIVED
8. sendMTFValues : Substituted 4 with 0 → SURVIVED
9. sendMTFValues : Substituted 0 with -1 → SURVIVED
10. sendMTFValues : Substituted 4 with -1 → SURVIVED
11. sendMTFValues : Substituted 4 with -4 → SURVIVED
12. sendMTFValues : Substituted 0 with 1 → SURVIVED
13. sendMTFValues : Substituted 4 with 5 → SURVIVED
14. sendMTFValues : Substituted 0 with -1 → SURVIVED
15. sendMTFValues : Substituted 4 with 3 → SURVIVED
16. sendMTFValues : greater or equal to less than → SURVIVED
17. sendMTFValues : greater or equal to less or equal → SURVIVED
18. sendMTFValues : greater or equal to greater than → SURVIVED
19. sendMTFValues : greater or equal to equal → SURVIVED
20. sendMTFValues : greater or equal to not equal → SURVIVED
21. sendMTFValues : Incremented (a++) integer local variable number 11 → SURVIVED
22. sendMTFValues : Incremented (++a) integer local variable number 11 → SURVIVED
23. sendMTFValues : Changed increment from 1 to -1 → TIMED_OUT
24. sendMTFValues : removed conditional - replaced comparison check with true → TIMED_OUT
25. sendMTFValues : Removed increment 1 → TIMED_OUT
26. sendMTFValues : Negated integer local variable number 13 → TIMED_OUT
27. sendMTFValues : Decremented (a--) integer local variable number 11 → TIMED_OUT
28. sendMTFValues : Decremented (--a) integer local variable number 11 → TIMED_OUT
        for (iter = 0; iter < N_ITERS; iter++) {
645 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
15. sendMTFValues : Changed increment from 1 to -1 → KILLED
16. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
17. sendMTFValues : Negated integer local variable number 4 → KILLED
18. sendMTFValues : Substituted 0 with -1 → KILLED
19. sendMTFValues : Substituted 0 with -1 → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
            for (t = 0; t < nGroups; t++) {
646 10 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with -1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 0 with -1 → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
7. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
8. sendMTFValues : Decremented (a--) integer local variable number 3 → TIMED_OUT
9. sendMTFValues : Negated integer local variable number 4 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
                fave[t] = 0;
647
            }
648
649 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
15. sendMTFValues : Removed increment 1 → TIMED_OUT
16. sendMTFValues : Changed increment from 1 to -1 → KILLED
17. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
18. sendMTFValues : Negated integer local variable number 4 → KILLED
19. sendMTFValues : Substituted 0 with -1 → KILLED
20. sendMTFValues : Substituted 0 with -1 → KILLED
21. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
24. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
            for (t = 0; t < nGroups; t++) {
650 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 3 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
17. sendMTFValues : Changed increment from 1 to -1 → KILLED
18. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
19. sendMTFValues : Negated integer local variable number 5 → KILLED
20. sendMTFValues : Substituted 0 with -1 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Incremented (a++) integer local variable number 13 → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 2 → KILLED
24. sendMTFValues : Incremented (++a) integer local variable number 13 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
                for (v = 0; v < alphaSize; v++) {
651 15 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
5. sendMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
6. sendMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
7. sendMTFValues : Substituted 0 with -1 → TIMED_OUT
8. sendMTFValues : Substituted 0 with -1 → TIMED_OUT
9. sendMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
10. sendMTFValues : Negated integer local variable number 4 → KILLED
11. sendMTFValues : Negated integer local variable number 5 → KILLED
12. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
13. sendMTFValues : Incremented (++a) integer local variable number 3 → KILLED
14. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
15. sendMTFValues : Decremented (--a) integer local variable number 2 → KILLED
                    rfreq[t][v] = 0;
652
                }
653
            }
654
655 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with -1 → KILLED
5. sendMTFValues : Substituted 0 with -1 → KILLED
            nSelectors = 0;
656 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with -1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 0 with -1 → SURVIVED
            totc = 0;
657 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with -1 → KILLED
5. sendMTFValues : Substituted 0 with -1 → KILLED
            gs = 0;
658
            while (true) {
659
660
                /* Set group start & end marks. */
661 19 1. sendMTFValues : negated conditional → SURVIVED
2. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
3. sendMTFValues : Negated integer field nMTF → SURVIVED
4. sendMTFValues : Less than to greater than → SURVIVED
5. sendMTFValues : Less than to greater or equal → SURVIVED
6. sendMTFValues : Less than to equal → SURVIVED
7. sendMTFValues : Less than to not equal → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
9. sendMTFValues : Incremented (a++) integer field nMTF → SURVIVED
10. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
11. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
12. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
13. sendMTFValues : changed conditional boundary → KILLED
14. sendMTFValues : removed conditional - replaced comparison check with false → KILLED
15. sendMTFValues : Negated integer local variable number 9 → KILLED
16. sendMTFValues : Less than to less or equal → KILLED
17. sendMTFValues : Decremented (a--) integer local variable number 6 → KILLED
18. sendMTFValues : Incremented (++a) integer field nMTF → KILLED
19. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
                if (gs >= nMTF) {
662
                    break;
663
                }
664 32 1. sendMTFValues : Substituted 50 with 51 → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
4. sendMTFValues : Negated integer local variable number 9 → SURVIVED
5. sendMTFValues : Replaced integer operation with first member → SURVIVED
6. sendMTFValues : Replaced integer operation by second member → SURVIVED
7. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
8. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
9. sendMTFValues : Replaced integer subtraction with division → SURVIVED
10. sendMTFValues : Substituted 50 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 1 with -1 → SURVIVED
13. sendMTFValues : Substituted 1 with -1 → SURVIVED
14. sendMTFValues : Substituted 50 with 51 → SURVIVED
15. sendMTFValues : Substituted 1 with 2 → SURVIVED
16. sendMTFValues : Substituted 50 with 49 → SURVIVED
17. sendMTFValues : Substituted 1 with 0 → SURVIVED
18. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
19. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
20. sendMTFValues : Replaced integer addition with subtraction → KILLED
21. sendMTFValues : Replaced integer operation with first member → KILLED
22. sendMTFValues : Replaced integer operation by second member → KILLED
23. sendMTFValues : Replaced integer addition with subtraction → KILLED
24. sendMTFValues : Replaced integer addition with multiplication → KILLED
25. sendMTFValues : Replaced integer addition with division → KILLED
26. sendMTFValues : Replaced integer addition with modulus → KILLED
27. sendMTFValues : Replaced integer subtraction with modulus → KILLED
28. sendMTFValues : Substituted 50 with 0 → KILLED
29. sendMTFValues : Substituted 50 with -1 → KILLED
30. sendMTFValues : Substituted 50 with -50 → KILLED
31. sendMTFValues : Decremented (a--) integer local variable number 6 → KILLED
32. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
                ge = gs + G_SIZE - 1;
665 19 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. sendMTFValues : Negated integer local variable number 11 → SURVIVED
6. sendMTFValues : Negated integer field nMTF → SURVIVED
7. sendMTFValues : Less than to less or equal → SURVIVED
8. sendMTFValues : Less than to greater than → SURVIVED
9. sendMTFValues : Less than to greater or equal → SURVIVED
10. sendMTFValues : Less than to equal → SURVIVED
11. sendMTFValues : Less than to not equal → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
13. sendMTFValues : Incremented (a++) integer field nMTF → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
15. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
17. sendMTFValues : Incremented (++a) integer field nMTF → SURVIVED
18. sendMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
19. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
                if (ge >= nMTF) {
666 18 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
3. sendMTFValues : Replaced integer operation with first member → SURVIVED
4. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
5. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
6. sendMTFValues : Replaced integer subtraction with division → SURVIVED
7. sendMTFValues : Substituted 1 with 0 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with -1 → SURVIVED
10. sendMTFValues : Substituted 1 with 0 → SURVIVED
11. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
12. sendMTFValues : Incremented (++a) integer field nMTF → SURVIVED
13. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
14. sendMTFValues : Negated integer field nMTF → KILLED
15. sendMTFValues : Replaced integer operation by second member → KILLED
16. sendMTFValues : Replaced integer subtraction with modulus → KILLED
17. sendMTFValues : Substituted 1 with 2 → KILLED
18. sendMTFValues : Incremented (a++) integer field nMTF → KILLED
                    ge = nMTF - 1;
667
                }
668
669
                /*
670
                  Calculate the cost of this group as coded
671
                  by each of the coding tables.
672
                */
673 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
15. sendMTFValues : Changed increment from 1 to -1 → KILLED
16. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
17. sendMTFValues : Negated integer local variable number 4 → KILLED
18. sendMTFValues : Substituted 0 with -1 → KILLED
19. sendMTFValues : Substituted 0 with -1 → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
                for (t = 0; t < nGroups; t++) {
674 10 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with -1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 0 with -1 → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
7. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
8. sendMTFValues : Decremented (a--) integer local variable number 3 → TIMED_OUT
9. sendMTFValues : Negated integer local variable number 4 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
                    cost[t] = 0;
675
                }
676
677 20 1. sendMTFValues : Substituted 6 with 7 → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
4. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 6 with 1 → SURVIVED
7. sendMTFValues : Substituted 6 with 0 → SURVIVED
8. sendMTFValues : Substituted 6 with -1 → SURVIVED
9. sendMTFValues : Substituted 6 with -6 → SURVIVED
10. sendMTFValues : Substituted 6 with 7 → SURVIVED
11. sendMTFValues : Substituted 6 with 5 → SURVIVED
12. sendMTFValues : not equal to less than → SURVIVED
13. sendMTFValues : not equal to less or equal → SURVIVED
14. sendMTFValues : not equal to greater than → SURVIVED
15. sendMTFValues : not equal to greater or equal → SURVIVED
16. sendMTFValues : not equal to equal → SURVIVED
17. sendMTFValues : Incremented (a++) integer local variable number 17 → SURVIVED
18. sendMTFValues : Incremented (++a) integer local variable number 17 → SURVIVED
19. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
20. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
                if (nGroups == 6) {
678
                    short cost0, cost1, cost2, cost3, cost4, cost5;
679 5 1. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
2. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
3. sendMTFValues : Substituted 0 with -1 → NO_COVERAGE
4. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
5. sendMTFValues : Substituted 0 with -1 → NO_COVERAGE
                    cost0 = cost1 = cost2 = cost3 = cost4 = cost5 = 0;
680 26 1. sendMTFValues : changed conditional boundary → NO_COVERAGE
2. sendMTFValues : Changed increment from 1 to -1 → NO_COVERAGE
3. sendMTFValues : negated conditional → NO_COVERAGE
4. sendMTFValues : removed conditional - replaced comparison check with false → NO_COVERAGE
5. sendMTFValues : removed conditional - replaced comparison check with true → NO_COVERAGE
6. sendMTFValues : Removed increment 1 → NO_COVERAGE
7. sendMTFValues : Negated integer local variable number 9 → NO_COVERAGE
8. sendMTFValues : Negated integer local variable number 20 → NO_COVERAGE
9. sendMTFValues : Negated integer local variable number 11 → NO_COVERAGE
10. sendMTFValues : greater than to less than → NO_COVERAGE
11. sendMTFValues : greater than to less or equal → NO_COVERAGE
12. sendMTFValues : greater than to greater or equal → NO_COVERAGE
13. sendMTFValues : greater than to equal → NO_COVERAGE
14. sendMTFValues : greater than to not equal → NO_COVERAGE
15. sendMTFValues : Incremented (a++) integer local variable number 6 → NO_COVERAGE
16. sendMTFValues : Incremented (a++) integer local variable number 4 → NO_COVERAGE
17. sendMTFValues : Incremented (a++) integer local variable number 7 → NO_COVERAGE
18. sendMTFValues : Decremented (a--) integer local variable number 6 → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer local variable number 4 → NO_COVERAGE
20. sendMTFValues : Decremented (a--) integer local variable number 7 → NO_COVERAGE
21. sendMTFValues : Incremented (++a) integer local variable number 6 → NO_COVERAGE
22. sendMTFValues : Incremented (++a) integer local variable number 4 → NO_COVERAGE
23. sendMTFValues : Incremented (++a) integer local variable number 7 → NO_COVERAGE
24. sendMTFValues : Decremented (--a) integer local variable number 6 → NO_COVERAGE
25. sendMTFValues : Decremented (--a) integer local variable number 4 → NO_COVERAGE
26. sendMTFValues : Decremented (--a) integer local variable number 7 → NO_COVERAGE
                    for (i = gs; i <= ge; i++) {
681 10 1. sendMTFValues : Negated integer local variable number 20 → NO_COVERAGE
2. sendMTFValues : Negated short array field → NO_COVERAGE
3. sendMTFValues : Incremented (a++) integer local variable number 4 → NO_COVERAGE
4. sendMTFValues : Incremented (a++) short array field → NO_COVERAGE
5. sendMTFValues : Decremented (a--) integer local variable number 4 → NO_COVERAGE
6. sendMTFValues : Decremented (a--) short array field → NO_COVERAGE
7. sendMTFValues : Incremented (++a) integer local variable number 4 → NO_COVERAGE
8. sendMTFValues : Incremented (++a) short array field → NO_COVERAGE
9. sendMTFValues : Decremented (--a) integer local variable number 4 → NO_COVERAGE
10. sendMTFValues : Decremented (--a) short array field → NO_COVERAGE
                        short icv = szptr[i];
682 22 1. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
2. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
3. sendMTFValues : Negated integer local variable number 12 → NO_COVERAGE
4. sendMTFValues : Negated integer local variable number 21 → NO_COVERAGE
5. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. sendMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. sendMTFValues : Replaced integer addition with division → NO_COVERAGE
10. sendMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
12. sendMTFValues : Substituted 0 with -1 → NO_COVERAGE
13. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
14. sendMTFValues : Substituted 0 with -1 → NO_COVERAGE
15. sendMTFValues : Incremented (a++) integer local variable number 21 → NO_COVERAGE
16. sendMTFValues : Incremented (a++) integer local variable number 27 → NO_COVERAGE
17. sendMTFValues : Decremented (a--) integer local variable number 21 → NO_COVERAGE
18. sendMTFValues : Decremented (a--) integer local variable number 27 → NO_COVERAGE
19. sendMTFValues : Incremented (++a) integer local variable number 21 → NO_COVERAGE
20. sendMTFValues : Incremented (++a) integer local variable number 27 → NO_COVERAGE
21. sendMTFValues : Decremented (--a) integer local variable number 21 → NO_COVERAGE
22. sendMTFValues : Decremented (--a) integer local variable number 27 → NO_COVERAGE
                        cost0 += len[0][icv];
683 23 1. sendMTFValues : Substituted 1 with 0 → NO_COVERAGE
2. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
3. sendMTFValues : Negated integer local variable number 19 → NO_COVERAGE
4. sendMTFValues : Negated integer local variable number 21 → NO_COVERAGE
5. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. sendMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. sendMTFValues : Replaced integer addition with division → NO_COVERAGE
10. sendMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. sendMTFValues : Substituted 1 with 0 → NO_COVERAGE
12. sendMTFValues : Substituted 1 with -1 → NO_COVERAGE
13. sendMTFValues : Substituted 1 with -1 → NO_COVERAGE
14. sendMTFValues : Substituted 1 with 2 → NO_COVERAGE
15. sendMTFValues : Substituted 1 with 0 → NO_COVERAGE
16. sendMTFValues : Incremented (a++) integer local variable number 22 → NO_COVERAGE
17. sendMTFValues : Incremented (a++) integer local variable number 27 → NO_COVERAGE
18. sendMTFValues : Decremented (a--) integer local variable number 22 → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer local variable number 27 → NO_COVERAGE
20. sendMTFValues : Incremented (++a) integer local variable number 22 → NO_COVERAGE
21. sendMTFValues : Incremented (++a) integer local variable number 27 → NO_COVERAGE
22. sendMTFValues : Decremented (--a) integer local variable number 22 → NO_COVERAGE
23. sendMTFValues : Decremented (--a) integer local variable number 27 → NO_COVERAGE
                        cost1 += len[1][icv];
684 24 1. sendMTFValues : Substituted 2 with 3 → NO_COVERAGE
2. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
3. sendMTFValues : Negated integer local variable number 18 → NO_COVERAGE
4. sendMTFValues : Negated integer local variable number 21 → NO_COVERAGE
5. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. sendMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. sendMTFValues : Replaced integer addition with division → NO_COVERAGE
10. sendMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. sendMTFValues : Substituted 2 with 1 → NO_COVERAGE
12. sendMTFValues : Substituted 2 with 0 → NO_COVERAGE
13. sendMTFValues : Substituted 2 with -1 → NO_COVERAGE
14. sendMTFValues : Substituted 2 with -2 → NO_COVERAGE
15. sendMTFValues : Substituted 2 with 3 → NO_COVERAGE
16. sendMTFValues : Substituted 2 with 1 → NO_COVERAGE
17. sendMTFValues : Incremented (a++) integer local variable number 23 → NO_COVERAGE
18. sendMTFValues : Incremented (a++) integer local variable number 27 → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer local variable number 23 → NO_COVERAGE
20. sendMTFValues : Decremented (a--) integer local variable number 27 → NO_COVERAGE
21. sendMTFValues : Incremented (++a) integer local variable number 23 → NO_COVERAGE
22. sendMTFValues : Incremented (++a) integer local variable number 27 → NO_COVERAGE
23. sendMTFValues : Decremented (--a) integer local variable number 23 → NO_COVERAGE
24. sendMTFValues : Decremented (--a) integer local variable number 27 → NO_COVERAGE
                        cost2 += len[2][icv];
685 24 1. sendMTFValues : Substituted 3 with 4 → NO_COVERAGE
2. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
3. sendMTFValues : Negated integer local variable number 17 → NO_COVERAGE
4. sendMTFValues : Negated integer local variable number 21 → NO_COVERAGE
5. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. sendMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. sendMTFValues : Replaced integer addition with division → NO_COVERAGE
10. sendMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. sendMTFValues : Substituted 3 with 1 → NO_COVERAGE
12. sendMTFValues : Substituted 3 with 0 → NO_COVERAGE
13. sendMTFValues : Substituted 3 with -1 → NO_COVERAGE
14. sendMTFValues : Substituted 3 with -3 → NO_COVERAGE
15. sendMTFValues : Substituted 3 with 4 → NO_COVERAGE
16. sendMTFValues : Substituted 3 with 2 → NO_COVERAGE
17. sendMTFValues : Incremented (a++) integer local variable number 24 → NO_COVERAGE
18. sendMTFValues : Incremented (a++) integer local variable number 27 → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer local variable number 24 → NO_COVERAGE
20. sendMTFValues : Decremented (a--) integer local variable number 27 → NO_COVERAGE
21. sendMTFValues : Incremented (++a) integer local variable number 24 → NO_COVERAGE
22. sendMTFValues : Incremented (++a) integer local variable number 27 → NO_COVERAGE
23. sendMTFValues : Decremented (--a) integer local variable number 24 → NO_COVERAGE
24. sendMTFValues : Decremented (--a) integer local variable number 27 → NO_COVERAGE
                        cost3 += len[3][icv];
686 24 1. sendMTFValues : Substituted 4 with 5 → NO_COVERAGE
2. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
3. sendMTFValues : Negated integer local variable number 16 → NO_COVERAGE
4. sendMTFValues : Negated integer local variable number 21 → NO_COVERAGE
5. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. sendMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. sendMTFValues : Replaced integer addition with division → NO_COVERAGE
10. sendMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. sendMTFValues : Substituted 4 with 1 → NO_COVERAGE
12. sendMTFValues : Substituted 4 with 0 → NO_COVERAGE
13. sendMTFValues : Substituted 4 with -1 → NO_COVERAGE
14. sendMTFValues : Substituted 4 with -4 → NO_COVERAGE
15. sendMTFValues : Substituted 4 with 5 → NO_COVERAGE
16. sendMTFValues : Substituted 4 with 3 → NO_COVERAGE
17. sendMTFValues : Incremented (a++) integer local variable number 25 → NO_COVERAGE
18. sendMTFValues : Incremented (a++) integer local variable number 27 → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer local variable number 25 → NO_COVERAGE
20. sendMTFValues : Decremented (a--) integer local variable number 27 → NO_COVERAGE
21. sendMTFValues : Incremented (++a) integer local variable number 25 → NO_COVERAGE
22. sendMTFValues : Incremented (++a) integer local variable number 27 → NO_COVERAGE
23. sendMTFValues : Decremented (--a) integer local variable number 25 → NO_COVERAGE
24. sendMTFValues : Decremented (--a) integer local variable number 27 → NO_COVERAGE
                        cost4 += len[4][icv];
687 24 1. sendMTFValues : Substituted 5 with 6 → NO_COVERAGE
2. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
3. sendMTFValues : Negated integer local variable number 15 → NO_COVERAGE
4. sendMTFValues : Negated integer local variable number 21 → NO_COVERAGE
5. sendMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. sendMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. sendMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. sendMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. sendMTFValues : Replaced integer addition with division → NO_COVERAGE
10. sendMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. sendMTFValues : Substituted 5 with 1 → NO_COVERAGE
12. sendMTFValues : Substituted 5 with 0 → NO_COVERAGE
13. sendMTFValues : Substituted 5 with -1 → NO_COVERAGE
14. sendMTFValues : Substituted 5 with -5 → NO_COVERAGE
15. sendMTFValues : Substituted 5 with 6 → NO_COVERAGE
16. sendMTFValues : Substituted 5 with 4 → NO_COVERAGE
17. sendMTFValues : Incremented (a++) integer local variable number 26 → NO_COVERAGE
18. sendMTFValues : Incremented (a++) integer local variable number 27 → NO_COVERAGE
19. sendMTFValues : Decremented (a--) integer local variable number 26 → NO_COVERAGE
20. sendMTFValues : Decremented (a--) integer local variable number 27 → NO_COVERAGE
21. sendMTFValues : Incremented (++a) integer local variable number 26 → NO_COVERAGE
22. sendMTFValues : Incremented (++a) integer local variable number 27 → NO_COVERAGE
23. sendMTFValues : Decremented (--a) integer local variable number 26 → NO_COVERAGE
24. sendMTFValues : Decremented (--a) integer local variable number 27 → NO_COVERAGE
                        cost5 += len[5][icv];
688
                    }
689 10 1. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
2. sendMTFValues : Negated integer local variable number 12 → NO_COVERAGE
3. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
4. sendMTFValues : Substituted 0 with -1 → NO_COVERAGE
5. sendMTFValues : Substituted 0 with 1 → NO_COVERAGE
6. sendMTFValues : Substituted 0 with -1 → NO_COVERAGE
7. sendMTFValues : Incremented (a++) integer local variable number 21 → NO_COVERAGE
8. sendMTFValues : Decremented (a--) integer local variable number 21 → NO_COVERAGE
9. sendMTFValues : Incremented (++a) integer local variable number 21 → NO_COVERAGE
10. sendMTFValues : Decremented (--a) integer local variable number 21 → NO_COVERAGE
                    cost[0] = cost0;
690 11 1. sendMTFValues : Substituted 1 with 0 → NO_COVERAGE
2. sendMTFValues : Negated integer local variable number 19 → NO_COVERAGE
3. sendMTFValues : Substituted 1 with 0 → NO_COVERAGE
4. sendMTFValues : Substituted 1 with -1 → NO_COVERAGE
5. sendMTFValues : Substituted 1 with -1 → NO_COVERAGE
6. sendMTFValues : Substituted 1 with 2 → NO_COVERAGE
7. sendMTFValues : Substituted 1 with 0 → NO_COVERAGE
8. sendMTFValues : Incremented (a++) integer local variable number 22 → NO_COVERAGE
9. sendMTFValues : Decremented (a--) integer local variable number 22 → NO_COVERAGE
10. sendMTFValues : Incremented (++a) integer local variable number 22 → NO_COVERAGE
11. sendMTFValues : Decremented (--a) integer local variable number 22 → NO_COVERAGE
                    cost[1] = cost1;
691 12 1. sendMTFValues : Substituted 2 with 3 → NO_COVERAGE
2. sendMTFValues : Negated integer local variable number 18 → NO_COVERAGE
3. sendMTFValues : Substituted 2 with 1 → NO_COVERAGE
4. sendMTFValues : Substituted 2 with 0 → NO_COVERAGE
5. sendMTFValues : Substituted 2 with -1 → NO_COVERAGE
6. sendMTFValues : Substituted 2 with -2 → NO_COVERAGE
7. sendMTFValues : Substituted 2 with 3 → NO_COVERAGE
8. sendMTFValues : Substituted 2 with 1 → NO_COVERAGE
9. sendMTFValues : Incremented (a++) integer local variable number 23 → NO_COVERAGE
10. sendMTFValues : Decremented (a--) integer local variable number 23 → NO_COVERAGE
11. sendMTFValues : Incremented (++a) integer local variable number 23 → NO_COVERAGE
12. sendMTFValues : Decremented (--a) integer local variable number 23 → NO_COVERAGE
                    cost[2] = cost2;
692 12 1. sendMTFValues : Substituted 3 with 4 → NO_COVERAGE
2. sendMTFValues : Negated integer local variable number 17 → NO_COVERAGE
3. sendMTFValues : Substituted 3 with 1 → NO_COVERAGE
4. sendMTFValues : Substituted 3 with 0 → NO_COVERAGE
5. sendMTFValues : Substituted 3 with -1 → NO_COVERAGE
6. sendMTFValues : Substituted 3 with -3 → NO_COVERAGE
7. sendMTFValues : Substituted 3 with 4 → NO_COVERAGE
8. sendMTFValues : Substituted 3 with 2 → NO_COVERAGE
9. sendMTFValues : Incremented (a++) integer local variable number 24 → NO_COVERAGE
10. sendMTFValues : Decremented (a--) integer local variable number 24 → NO_COVERAGE
11. sendMTFValues : Incremented (++a) integer local variable number 24 → NO_COVERAGE
12. sendMTFValues : Decremented (--a) integer local variable number 24 → NO_COVERAGE
                    cost[3] = cost3;
693 12 1. sendMTFValues : Substituted 4 with 5 → NO_COVERAGE
2. sendMTFValues : Negated integer local variable number 16 → NO_COVERAGE
3. sendMTFValues : Substituted 4 with 1 → NO_COVERAGE
4. sendMTFValues : Substituted 4 with 0 → NO_COVERAGE
5. sendMTFValues : Substituted 4 with -1 → NO_COVERAGE
6. sendMTFValues : Substituted 4 with -4 → NO_COVERAGE
7. sendMTFValues : Substituted 4 with 5 → NO_COVERAGE
8. sendMTFValues : Substituted 4 with 3 → NO_COVERAGE
9. sendMTFValues : Incremented (a++) integer local variable number 25 → NO_COVERAGE
10. sendMTFValues : Decremented (a--) integer local variable number 25 → NO_COVERAGE
11. sendMTFValues : Incremented (++a) integer local variable number 25 → NO_COVERAGE
12. sendMTFValues : Decremented (--a) integer local variable number 25 → NO_COVERAGE
                    cost[4] = cost4;
694 12 1. sendMTFValues : Substituted 5 with 6 → NO_COVERAGE
2. sendMTFValues : Negated integer local variable number 15 → NO_COVERAGE
3. sendMTFValues : Substituted 5 with 1 → NO_COVERAGE
4. sendMTFValues : Substituted 5 with 0 → NO_COVERAGE
5. sendMTFValues : Substituted 5 with -1 → NO_COVERAGE
6. sendMTFValues : Substituted 5 with -5 → NO_COVERAGE
7. sendMTFValues : Substituted 5 with 6 → NO_COVERAGE
8. sendMTFValues : Substituted 5 with 4 → NO_COVERAGE
9. sendMTFValues : Incremented (a++) integer local variable number 26 → NO_COVERAGE
10. sendMTFValues : Decremented (a--) integer local variable number 26 → NO_COVERAGE
11. sendMTFValues : Incremented (++a) integer local variable number 26 → NO_COVERAGE
12. sendMTFValues : Decremented (--a) integer local variable number 26 → NO_COVERAGE
                    cost[5] = cost5;
695
                } else {
696 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Negated integer local variable number 9 → SURVIVED
5. sendMTFValues : Negated integer local variable number 11 → SURVIVED
6. sendMTFValues : greater than to less than → SURVIVED
7. sendMTFValues : greater than to less or equal → SURVIVED
8. sendMTFValues : greater than to greater or equal → SURVIVED
9. sendMTFValues : greater than to equal → SURVIVED
10. sendMTFValues : greater than to not equal → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
13. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
15. sendMTFValues : Removed increment 1 → TIMED_OUT
16. sendMTFValues : Changed increment from 1 to -1 → KILLED
17. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
18. sendMTFValues : Negated integer local variable number 20 → KILLED
19. sendMTFValues : Incremented (a++) integer local variable number 7 → KILLED
20. sendMTFValues : Decremented (a--) integer local variable number 6 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 7 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 7 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
                    for (i = gs; i <= ge; i++) {
697 10 1. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
2. sendMTFValues : Incremented (a++) short array field → SURVIVED
3. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
4. sendMTFValues : Incremented (++a) short array field → SURVIVED
5. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
6. sendMTFValues : Negated integer local variable number 20 → KILLED
7. sendMTFValues : Negated short array field → KILLED
8. sendMTFValues : Decremented (a--) short array field → KILLED
9. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
10. sendMTFValues : Decremented (--a) short array field → KILLED
                        short icv = szptr[i];
698 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
15. sendMTFValues : Changed increment from 1 to -1 → KILLED
16. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
17. sendMTFValues : Negated integer local variable number 4 → KILLED
18. sendMTFValues : Substituted 0 with -1 → KILLED
19. sendMTFValues : Substituted 0 with -1 → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
                        for (t = 0; t < nGroups; t++) {
699 27 1. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
2. sendMTFValues : Negated short array field → SURVIVED
3. sendMTFValues : Replaced integer operation with first member → SURVIVED
4. sendMTFValues : Replaced integer operation by second member → SURVIVED
5. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
6. sendMTFValues : Replaced integer addition with multiplication → SURVIVED
7. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
8. sendMTFValues : Incremented (a++) short array field → SURVIVED
9. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 21 → SURVIVED
11. sendMTFValues : Decremented (a--) short array field → SURVIVED
12. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
13. sendMTFValues : Incremented (++a) short array field → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 21 → SURVIVED
16. sendMTFValues : Decremented (--a) short array field → SURVIVED
17. sendMTFValues : Decremented (a--) integer local variable number 3 → TIMED_OUT
18. sendMTFValues : Negated integer local variable number 4 → KILLED
19. sendMTFValues : Negated integer local variable number 4 → KILLED
20. sendMTFValues : Negated integer local variable number 12 → KILLED
21. sendMTFValues : Replaced integer addition with division → KILLED
22. sendMTFValues : Replaced integer addition with modulus → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
24. sendMTFValues : Decremented (a--) integer local variable number 21 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
27. sendMTFValues : Decremented (--a) integer local variable number 21 → KILLED
                            cost[t] += len[t][icv];
700
                        }
701
                    }
702
                }
703
704
                /*
705
                  Find the coding table which is best for this group,
706
                  and record its identity in the selector table.
707
                */
708 7 1. sendMTFValues : Substituted 999999999 with 1000000000 → SURVIVED
2. sendMTFValues : Substituted 999999999 with 1000000000 → SURVIVED
3. sendMTFValues : Substituted 999999999 with 999999998 → SURVIVED
4. sendMTFValues : Substituted 999999999 with 1 → KILLED
5. sendMTFValues : Substituted 999999999 with 0 → KILLED
6. sendMTFValues : Substituted 999999999 with -1 → KILLED
7. sendMTFValues : Substituted 999999999 with -999999999 → KILLED
                bc = 999999999;
709 6 1. sendMTFValues : Substituted -1 with 0 → SURVIVED
2. sendMTFValues : Substituted -1 with 1 → SURVIVED
3. sendMTFValues : Substituted -1 with 0 → SURVIVED
4. sendMTFValues : Substituted -1 with 1 → SURVIVED
5. sendMTFValues : Substituted -1 with 0 → SURVIVED
6. sendMTFValues : Substituted -1 with -2 → SURVIVED
                bt = -1;
710 25 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : greater or equal to equal → SURVIVED
5. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
6. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
7. sendMTFValues : changed conditional boundary → KILLED
8. sendMTFValues : Changed increment from 1 to -1 → KILLED
9. sendMTFValues : negated conditional → KILLED
10. sendMTFValues : removed conditional - replaced comparison check with false → KILLED
11. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
12. sendMTFValues : Negated integer local variable number 4 → KILLED
13. sendMTFValues : Negated integer local variable number 6 → KILLED
14. sendMTFValues : Substituted 0 with -1 → KILLED
15. sendMTFValues : Substituted 0 with -1 → KILLED
16. sendMTFValues : greater or equal to less than → KILLED
17. sendMTFValues : greater or equal to less or equal → KILLED
18. sendMTFValues : greater or equal to greater than → KILLED
19. sendMTFValues : greater or equal to not equal → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
                for (t = 0; t < nGroups; t++) {
711 24 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
3. sendMTFValues : Negated short array field → SURVIVED
4. sendMTFValues : greater or equal to greater than → SURVIVED
5. sendMTFValues : greater or equal to equal → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
7. sendMTFValues : Incremented (a++) short array field → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 10 → SURVIVED
9. sendMTFValues : Decremented (a--) short array field → SURVIVED
10. sendMTFValues : Decremented (a--) integer local variable number 10 → SURVIVED
11. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
12. sendMTFValues : Incremented (++a) short array field → SURVIVED
13. sendMTFValues : Incremented (++a) integer local variable number 10 → SURVIVED
14. sendMTFValues : Decremented (--a) short array field → SURVIVED
15. sendMTFValues : Decremented (--a) integer local variable number 10 → SURVIVED
16. sendMTFValues : negated conditional → KILLED
17. sendMTFValues : removed conditional - replaced comparison check with false → KILLED
18. sendMTFValues : Negated integer local variable number 4 → KILLED
19. sendMTFValues : Negated integer local variable number 22 → KILLED
20. sendMTFValues : greater or equal to less than → KILLED
21. sendMTFValues : greater or equal to less or equal → KILLED
22. sendMTFValues : greater or equal to not equal → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
                    if (cost[t] < bc) {
712 10 1. sendMTFValues : Negated short array field → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
3. sendMTFValues : Incremented (a++) short array field → SURVIVED
4. sendMTFValues : Decremented (a--) short array field → SURVIVED
5. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
6. sendMTFValues : Incremented (++a) short array field → SURVIVED
7. sendMTFValues : Decremented (--a) short array field → SURVIVED
8. sendMTFValues : Negated integer local variable number 4 → KILLED
9. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
                        bc = cost[t];
713 5 1. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
2. sendMTFValues : Decremented (a--) integer local variable number 3 → SURVIVED
3. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
4. sendMTFValues : Negated integer local variable number 4 → KILLED
5. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
                        bt = t;
714
                    }
715
                }
716 17 1. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
2. sendMTFValues : Negated integer local variable number 14 → SURVIVED
3. sendMTFValues : Negated integer local variable number 22 → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
7. sendMTFValues : Replaced integer addition with multiplication → SURVIVED
8. sendMTFValues : Replaced integer addition with division → SURVIVED
9. sendMTFValues : Replaced integer addition with modulus → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 8 → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 10 → SURVIVED
12. sendMTFValues : Decremented (a--) integer local variable number 8 → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 10 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 8 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 10 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 8 → SURVIVED
17. sendMTFValues : Decremented (--a) integer local variable number 10 → SURVIVED
                totc += bc;
717 23 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
3. sendMTFValues : Negated integer array field → SURVIVED
4. sendMTFValues : Replaced integer operation with first member → SURVIVED
5. sendMTFValues : Replaced integer operation by second member → SURVIVED
6. sendMTFValues : Replaced integer addition with subtraction → SURVIVED
7. sendMTFValues : Replaced integer addition with multiplication → SURVIVED
8. sendMTFValues : Replaced integer addition with division → SURVIVED
9. sendMTFValues : Replaced integer addition with modulus → SURVIVED
10. sendMTFValues : Substituted 1 with 0 → SURVIVED
11. sendMTFValues : Substituted 1 with -1 → SURVIVED
12. sendMTFValues : Substituted 1 with -1 → SURVIVED
13. sendMTFValues : Substituted 1 with 2 → SURVIVED
14. sendMTFValues : Substituted 1 with 0 → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 9 → SURVIVED
16. sendMTFValues : Incremented (a++) integer array field → SURVIVED
17. sendMTFValues : Decremented (a--) integer array field → SURVIVED
18. sendMTFValues : Incremented (++a) integer local variable number 9 → SURVIVED
19. sendMTFValues : Incremented (++a) integer array field → SURVIVED
20. sendMTFValues : Decremented (--a) integer array field → SURVIVED
21. sendMTFValues : Negated integer local variable number 23 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 9 → KILLED
23. sendMTFValues : Decremented (--a) integer local variable number 9 → KILLED
                fave[bt]++;
718 10 1. sendMTFValues : Negated integer local variable number 2 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 12 → SURVIVED
3. sendMTFValues : Incremented (a++) integer local variable number 9 → SURVIVED
4. sendMTFValues : Decremented (a--) integer local variable number 12 → SURVIVED
5. sendMTFValues : Incremented (++a) integer local variable number 12 → SURVIVED
6. sendMTFValues : Incremented (++a) integer local variable number 9 → SURVIVED
7. sendMTFValues : Negated integer local variable number 23 → KILLED
8. sendMTFValues : Decremented (a--) integer local variable number 9 → KILLED
9. sendMTFValues : Decremented (--a) integer local variable number 12 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 9 → KILLED
                selector[nSelectors] = (char) bt;
719 2 1. sendMTFValues : Changed increment from 1 to -1 → SURVIVED
2. sendMTFValues : Removed increment 1 → SURVIVED
                nSelectors++;
720
721
                /*
722
                  Increment the symbol frequencies for the selected table.
723
                */
724 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Negated integer local variable number 9 → SURVIVED
5. sendMTFValues : Negated integer local variable number 11 → SURVIVED
6. sendMTFValues : greater than to less than → SURVIVED
7. sendMTFValues : greater than to less or equal → SURVIVED
8. sendMTFValues : greater than to greater or equal → SURVIVED
9. sendMTFValues : greater than to equal → SURVIVED
10. sendMTFValues : greater than to not equal → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Removed increment 1 → TIMED_OUT
17. sendMTFValues : Changed increment from 1 to -1 → KILLED
18. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
19. sendMTFValues : Negated integer local variable number 20 → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 7 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 7 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 7 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
                for (i = gs; i <= ge; i++) {
725 33 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Negated integer array field → SURVIVED
3. sendMTFValues : Replaced integer operation with first member → SURVIVED
4. sendMTFValues : Replaced integer operation by second member → SURVIVED
5. sendMTFValues : Replaced integer addition with multiplication → SURVIVED
6. sendMTFValues : Replaced integer addition with division → SURVIVED
7. sendMTFValues : Replaced integer addition with modulus → SURVIVED
8. sendMTFValues : Substituted 1 with 0 → SURVIVED
9. sendMTFValues : Substituted 1 with 2 → SURVIVED
10. sendMTFValues : Substituted 1 with 0 → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
12. sendMTFValues : Incremented (a++) short array field → SURVIVED
13. sendMTFValues : Incremented (a++) integer array field → SURVIVED
14. sendMTFValues : Decremented (a--) integer array field → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Incremented (++a) short array field → SURVIVED
17. sendMTFValues : Incremented (++a) integer array field → SURVIVED
18. sendMTFValues : Decremented (--a) integer array field → SURVIVED
19. sendMTFValues : Replaced integer addition with subtraction → TIMED_OUT
20. sendMTFValues : Replaced integer addition with subtraction → TIMED_OUT
21. sendMTFValues : Substituted 1 with -1 → TIMED_OUT
22. sendMTFValues : Substituted 1 with -1 → TIMED_OUT
23. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
24. sendMTFValues : Negated integer local variable number 23 → KILLED
25. sendMTFValues : Negated integer local variable number 20 → KILLED
26. sendMTFValues : Negated short array field → KILLED
27. sendMTFValues : Incremented (a++) integer local variable number 9 → KILLED
28. sendMTFValues : Decremented (a--) integer local variable number 9 → KILLED
29. sendMTFValues : Decremented (a--) short array field → KILLED
30. sendMTFValues : Incremented (++a) integer local variable number 9 → KILLED
31. sendMTFValues : Decremented (--a) integer local variable number 9 → KILLED
32. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
33. sendMTFValues : Decremented (--a) short array field → KILLED
                    rfreq[bt][szptr[i]]++;
726
                }
727
728 18 1. sendMTFValues : Substituted 1 with 2 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
3. sendMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
4. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → KILLED
6. sendMTFValues : Replaced integer addition with subtraction → KILLED
7. sendMTFValues : Negated integer local variable number 11 → KILLED
8. sendMTFValues : Replaced integer operation with first member → KILLED
9. sendMTFValues : Replaced integer operation by second member → KILLED
10. sendMTFValues : Replaced integer addition with subtraction → KILLED
11. sendMTFValues : Replaced integer addition with multiplication → KILLED
12. sendMTFValues : Replaced integer addition with division → KILLED
13. sendMTFValues : Replaced integer addition with modulus → KILLED
14. sendMTFValues : Substituted 1 with 0 → KILLED
15. sendMTFValues : Substituted 1 with -1 → KILLED
16. sendMTFValues : Substituted 1 with -1 → KILLED
17. sendMTFValues : Substituted 1 with 0 → KILLED
18. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
                gs = ge + 1;
729
            }
730
731
            /*
732
              Recompute the tables based on the accumulated frequencies.
733
            */
734 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
15. sendMTFValues : Changed increment from 1 to -1 → KILLED
16. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
17. sendMTFValues : Negated integer local variable number 4 → KILLED
18. sendMTFValues : Substituted 0 with -1 → KILLED
19. sendMTFValues : Substituted 0 with -1 → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
            for (t = 0; t < nGroups; t++) {
735 23 1. sendMTFValues : Substituted 20 with 21 → SURVIVED
2. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::hbMakeCodeLengths → SURVIVED
3. sendMTFValues : Negated integer local variable number 3 → SURVIVED
4. sendMTFValues : Substituted 20 with 21 → SURVIVED
5. sendMTFValues : Substituted 20 with 19 → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
7. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 13 → SURVIVED
9. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
10. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
11. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
12. sendMTFValues : Incremented (++a) integer local variable number 13 → SURVIVED
13. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
14. sendMTFValues : Substituted 20 with 1 → TIMED_OUT
15. sendMTFValues : Substituted 20 with 0 → TIMED_OUT
16. sendMTFValues : Substituted 20 with -1 → TIMED_OUT
17. sendMTFValues : Substituted 20 with -20 → TIMED_OUT
18. sendMTFValues : Decremented (a--) integer local variable number 3 → TIMED_OUT
19. sendMTFValues : Negated integer local variable number 4 → KILLED
20. sendMTFValues : Negated integer local variable number 4 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
22. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
23. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
                hbMakeCodeLengths(len[t], rfreq[t], alphaSize, 20);
736
            }
737
        }
738
739
        rfreq = null;
740
        fave = null;
741
        cost = null;
742
743 21 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 8 with 9 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
6. sendMTFValues : Negated integer local variable number 6 → SURVIVED
7. sendMTFValues : Substituted 8 with 1 → SURVIVED
8. sendMTFValues : Substituted 8 with 0 → SURVIVED
9. sendMTFValues : Substituted 8 with -1 → SURVIVED
10. sendMTFValues : Substituted 8 with -8 → SURVIVED
11. sendMTFValues : Substituted 8 with 9 → SURVIVED
12. sendMTFValues : Substituted 8 with 7 → SURVIVED
13. sendMTFValues : Less than to less or equal → SURVIVED
14. sendMTFValues : Less than to greater than → SURVIVED
15. sendMTFValues : Less than to greater or equal → SURVIVED
16. sendMTFValues : Less than to equal → SURVIVED
17. sendMTFValues : Less than to not equal → SURVIVED
18. sendMTFValues : Incremented (a++) integer local variable number 17 → SURVIVED
19. sendMTFValues : Incremented (++a) integer local variable number 17 → SURVIVED
20. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
21. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
        if (!(nGroups < 8)) {
744 1 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
            panic();
745
        }
746 42 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : changed conditional boundary → SURVIVED
3. sendMTFValues : Substituted 32768 with 32769 → SURVIVED
4. sendMTFValues : Substituted 18002 with 18003 → SURVIVED
5. sendMTFValues : negated conditional → SURVIVED
6. sendMTFValues : negated conditional → SURVIVED
7. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
8. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
9. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
10. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
11. sendMTFValues : Negated integer local variable number 2 → SURVIVED
12. sendMTFValues : Negated integer local variable number 2 → SURVIVED
13. sendMTFValues : Substituted 32768 with 1 → SURVIVED
14. sendMTFValues : Substituted 18002 with 1 → SURVIVED
15. sendMTFValues : Substituted 32768 with 0 → SURVIVED
16. sendMTFValues : Substituted 18002 with 0 → SURVIVED
17. sendMTFValues : Substituted 32768 with -1 → SURVIVED
18. sendMTFValues : Substituted 18002 with -1 → SURVIVED
19. sendMTFValues : Substituted 32768 with -32768 → SURVIVED
20. sendMTFValues : Substituted 18002 with -18002 → SURVIVED
21. sendMTFValues : Substituted 32768 with 32769 → SURVIVED
22. sendMTFValues : Substituted 18002 with 18003 → SURVIVED
23. sendMTFValues : Substituted 32768 with 32767 → SURVIVED
24. sendMTFValues : Substituted 18002 with 18001 → SURVIVED
25. sendMTFValues : greater or equal to less than → SURVIVED
26. sendMTFValues : Less or equal to less than → SURVIVED
27. sendMTFValues : greater or equal to less or equal → SURVIVED
28. sendMTFValues : Less or equal to greater than → SURVIVED
29. sendMTFValues : greater or equal to greater than → SURVIVED
30. sendMTFValues : Less or equal to greater or equal → SURVIVED
31. sendMTFValues : greater or equal to equal → SURVIVED
32. sendMTFValues : Less or equal to equal → SURVIVED
33. sendMTFValues : greater or equal to not equal → SURVIVED
34. sendMTFValues : Less or equal to not equal → SURVIVED
35. sendMTFValues : Incremented (a++) integer local variable number 12 → SURVIVED
36. sendMTFValues : Incremented (a++) integer local variable number 12 → SURVIVED
37. sendMTFValues : Decremented (a--) integer local variable number 12 → SURVIVED
38. sendMTFValues : Decremented (a--) integer local variable number 12 → SURVIVED
39. sendMTFValues : Incremented (++a) integer local variable number 12 → SURVIVED
40. sendMTFValues : Incremented (++a) integer local variable number 12 → SURVIVED
41. sendMTFValues : Decremented (--a) integer local variable number 12 → SURVIVED
42. sendMTFValues : Decremented (--a) integer local variable number 12 → SURVIVED
        if (!(nSelectors < 32768 && nSelectors <= (2 + (900000 / G_SIZE)))) {
747 1 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
            panic();
748
        }
749
750
751
        /* Compute MTF values for the selectors. */
752
        {
753 7 1. sendMTFValues : Substituted 6 with 7 → SURVIVED
2. sendMTFValues : Substituted 6 with 7 → SURVIVED
3. sendMTFValues : Substituted 6 with 5 → SURVIVED
4. sendMTFValues : Substituted 6 with 1 → KILLED
5. sendMTFValues : Substituted 6 with 0 → KILLED
6. sendMTFValues : Substituted 6 with -1 → KILLED
7. sendMTFValues : Substituted 6 with -6 → KILLED
            char[] pos = new char[N_GROUPS];
754
            char ll_i, tmp2, tmp;
755 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : greater or equal to greater than → SURVIVED
6. sendMTFValues : greater or equal to equal → SURVIVED
7. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
8. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
9. sendMTFValues : Changed increment from 1 to -1 → KILLED
10. sendMTFValues : negated conditional → KILLED
11. sendMTFValues : removed conditional - replaced comparison check with false → KILLED
12. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
13. sendMTFValues : Negated integer local variable number 20 → KILLED
14. sendMTFValues : Negated integer local variable number 6 → KILLED
15. sendMTFValues : Substituted 0 with -1 → KILLED
16. sendMTFValues : Substituted 0 with -1 → KILLED
17. sendMTFValues : greater or equal to less than → KILLED
18. sendMTFValues : greater or equal to less or equal → KILLED
19. sendMTFValues : greater or equal to not equal → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 17 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 17 → KILLED
            for (i = 0; i < nGroups; i++) {
756 10 1. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
2. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
3. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
4. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
5. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
6. sendMTFValues : Decremented (--a) integer local variable number 4 → TIMED_OUT
7. sendMTFValues : Negated integer local variable number 20 → KILLED
8. sendMTFValues : Negated integer local variable number 20 → KILLED
9. sendMTFValues : Incremented (a++) integer local variable number 4 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                pos[i] = (char) i;
757
            }
758 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 2 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 12 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 12 → SURVIVED
17. sendMTFValues : Removed increment 1 → TIMED_OUT
18. sendMTFValues : Changed increment from 1 to -1 → KILLED
19. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
20. sendMTFValues : Negated integer local variable number 20 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Substituted 0 with -1 → KILLED
23. sendMTFValues : Incremented (a++) integer local variable number 12 → KILLED
24. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
25. sendMTFValues : Incremented (++a) integer local variable number 12 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            for (i = 0; i < nSelectors; i++) {
759 5 1. sendMTFValues : Negated integer local variable number 20 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
3. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
4. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
5. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                ll_i = selector[i];
760 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with -1 → KILLED
5. sendMTFValues : Substituted 0 with -1 → KILLED
                j = 0;
761 5 1. sendMTFValues : Negated integer local variable number 24 → SURVIVED
2. sendMTFValues : Decremented (a--) integer local variable number 5 → SURVIVED
3. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
4. sendMTFValues : Incremented (a++) integer local variable number 5 → KILLED
5. sendMTFValues : Decremented (--a) integer local variable number 5 → KILLED
                tmp = pos[j];
762 18 1. sendMTFValues : negated conditional → SURVIVED
2. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
3. sendMTFValues : equal to less or equal → SURVIVED
4. sendMTFValues : equal to greater than → SURVIVED
5. sendMTFValues : equal to greater or equal → SURVIVED
6. sendMTFValues : equal to not equal → SURVIVED
7. sendMTFValues : Incremented (a++) integer local variable number 24 → SURVIVED
8. sendMTFValues : Decremented (a--) integer local variable number 24 → SURVIVED
9. sendMTFValues : Incremented (++a) integer local variable number 24 → SURVIVED
10. sendMTFValues : Decremented (--a) integer local variable number 22 → SURVIVED
11. sendMTFValues : removed conditional - replaced equality check with true → KILLED
12. sendMTFValues : Negated integer local variable number 19 → KILLED
13. sendMTFValues : Negated integer local variable number 17 → KILLED
14. sendMTFValues : equal to less than → KILLED
15. sendMTFValues : Incremented (a++) integer local variable number 22 → KILLED
16. sendMTFValues : Decremented (a--) integer local variable number 22 → KILLED
17. sendMTFValues : Incremented (++a) integer local variable number 22 → KILLED
18. sendMTFValues : Decremented (--a) integer local variable number 24 → KILLED
                while (ll_i != tmp) {
763 2 1. sendMTFValues : Removed increment 1 → TIMED_OUT
2. sendMTFValues : Changed increment from 1 to -1 → KILLED
                    j++;
764 5 1. sendMTFValues : Negated integer local variable number 17 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 24 → SURVIVED
3. sendMTFValues : Decremented (a--) integer local variable number 24 → SURVIVED
4. sendMTFValues : Incremented (++a) integer local variable number 24 → SURVIVED
5. sendMTFValues : Decremented (--a) integer local variable number 24 → SURVIVED
                    tmp2 = tmp;
765 5 1. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
2. sendMTFValues : Decremented (a--) integer local variable number 5 → SURVIVED
3. sendMTFValues : Decremented (--a) integer local variable number 5 → TIMED_OUT
4. sendMTFValues : Negated integer local variable number 24 → KILLED
5. sendMTFValues : Incremented (++a) integer local variable number 5 → KILLED
                    tmp = pos[j];
766 10 1. sendMTFValues : Negated integer local variable number 18 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
3. sendMTFValues : Incremented (a++) integer local variable number 23 → SURVIVED
4. sendMTFValues : Decremented (a--) integer local variable number 5 → SURVIVED
5. sendMTFValues : Decremented (a--) integer local variable number 23 → SURVIVED
6. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
7. sendMTFValues : Incremented (++a) integer local variable number 23 → SURVIVED
8. sendMTFValues : Decremented (--a) integer local variable number 5 → SURVIVED
9. sendMTFValues : Decremented (--a) integer local variable number 23 → SURVIVED
10. sendMTFValues : Negated integer local variable number 24 → KILLED
                    pos[j] = tmp2;
767
                }
768 10 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Negated integer local variable number 17 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Incremented (a++) integer local variable number 24 → SURVIVED
6. sendMTFValues : Decremented (a--) integer local variable number 24 → SURVIVED
7. sendMTFValues : Incremented (++a) integer local variable number 24 → SURVIVED
8. sendMTFValues : Decremented (--a) integer local variable number 24 → SURVIVED
9. sendMTFValues : Substituted 0 with -1 → KILLED
10. sendMTFValues : Substituted 0 with -1 → KILLED
                pos[0] = tmp;
769 10 1. sendMTFValues : Negated integer local variable number 20 → SURVIVED
2. sendMTFValues : Negated integer local variable number 24 → SURVIVED
3. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
4. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
5. sendMTFValues : Decremented (a--) integer local variable number 5 → SURVIVED
6. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
7. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
8. sendMTFValues : Decremented (--a) integer local variable number 5 → SURVIVED
9. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
10. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                selectorMtf[i] = (char) j;
770
            }
771
        }
772
773 14 1. sendMTFValues : Substituted 6 with 7 → SURVIVED
2. sendMTFValues : Substituted 258 with 259 → SURVIVED
3. sendMTFValues : Substituted 6 with 7 → SURVIVED
4. sendMTFValues : Substituted 258 with 259 → SURVIVED
5. sendMTFValues : Substituted 6 with 5 → SURVIVED
6. sendMTFValues : Substituted 258 with 257 → SURVIVED
7. sendMTFValues : Substituted 6 with 1 → KILLED
8. sendMTFValues : Substituted 258 with 1 → KILLED
9. sendMTFValues : Substituted 6 with 0 → KILLED
10. sendMTFValues : Substituted 258 with 0 → KILLED
11. sendMTFValues : Substituted 6 with -1 → KILLED
12. sendMTFValues : Substituted 258 with -1 → KILLED
13. sendMTFValues : Substituted 6 with -6 → KILLED
14. sendMTFValues : Substituted 258 with -258 → KILLED
        int[][] code = new int[N_GROUPS][MAX_ALPHA_SIZE];
774
775
        /* Assign actual codes for the tables. */
776 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 17 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 17 → SURVIVED
17. sendMTFValues : Removed increment 1 → TIMED_OUT
18. sendMTFValues : Changed increment from 1 to -1 → KILLED
19. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
20. sendMTFValues : Negated integer local variable number 4 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Substituted 0 with -1 → KILLED
23. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
25. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
        for (t = 0; t < nGroups; t++) {
777 7 1. sendMTFValues : Substituted 32 with 33 → SURVIVED
2. sendMTFValues : Substituted 32 with 1 → SURVIVED
3. sendMTFValues : Substituted 32 with 0 → SURVIVED
4. sendMTFValues : Substituted 32 with -1 → SURVIVED
5. sendMTFValues : Substituted 32 with -32 → SURVIVED
6. sendMTFValues : Substituted 32 with 33 → SURVIVED
7. sendMTFValues : Substituted 32 with 31 → SURVIVED
            minLen = 32;
778 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with -1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 0 with -1 → SURVIVED
            maxLen = 0;
779 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 3 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
17. sendMTFValues : Changed increment from 1 to -1 → KILLED
18. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
19. sendMTFValues : Negated integer local variable number 20 → KILLED
20. sendMTFValues : Substituted 0 with -1 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Incremented (a++) integer local variable number 13 → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
24. sendMTFValues : Incremented (++a) integer local variable number 13 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            for (i = 0; i < alphaSize; i++) {
780 24 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. sendMTFValues : Negated integer local variable number 26 → SURVIVED
6. sendMTFValues : Less or equal to less than → SURVIVED
7. sendMTFValues : Less or equal to greater than → SURVIVED
8. sendMTFValues : Less or equal to greater or equal → SURVIVED
9. sendMTFValues : Less or equal to equal → SURVIVED
10. sendMTFValues : Less or equal to not equal → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 15 → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 15 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 15 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 15 → SURVIVED
17. sendMTFValues : Negated integer local variable number 4 → KILLED
18. sendMTFValues : Negated integer local variable number 20 → KILLED
19. sendMTFValues : Incremented (a++) integer local variable number 3 → KILLED
20. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
22. sendMTFValues : Incremented (++a) integer local variable number 3 → KILLED
23. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                if (len[t][i] > maxLen) {
781 10 1. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
3. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
4. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
5. sendMTFValues : Negated integer local variable number 4 → KILLED
6. sendMTFValues : Negated integer local variable number 20 → KILLED
7. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
8. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
9. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                    maxLen = len[t][i];
782
                }
783 24 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. sendMTFValues : Negated integer local variable number 25 → SURVIVED
6. sendMTFValues : greater or equal to less than → SURVIVED
7. sendMTFValues : greater or equal to less or equal → SURVIVED
8. sendMTFValues : greater or equal to greater than → SURVIVED
9. sendMTFValues : greater or equal to equal → SURVIVED
10. sendMTFValues : greater or equal to not equal → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 14 → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 14 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 14 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 14 → SURVIVED
17. sendMTFValues : Negated integer local variable number 4 → KILLED
18. sendMTFValues : Negated integer local variable number 20 → KILLED
19. sendMTFValues : Incremented (a++) integer local variable number 3 → KILLED
20. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
22. sendMTFValues : Incremented (++a) integer local variable number 3 → KILLED
23. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                if (len[t][i] < minLen) {
784 10 1. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
3. sendMTFValues : Decremented (a--) integer local variable number 4 → SURVIVED
4. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
5. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
6. sendMTFValues : Negated integer local variable number 4 → KILLED
7. sendMTFValues : Negated integer local variable number 20 → KILLED
8. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
9. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                    minLen = len[t][i];
785
                }
786
            }
787 21 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 20 with 21 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
6. sendMTFValues : Negated integer local variable number 26 → SURVIVED
7. sendMTFValues : Substituted 20 with 1 → SURVIVED
8. sendMTFValues : Substituted 20 with 0 → SURVIVED
9. sendMTFValues : Substituted 20 with -1 → SURVIVED
10. sendMTFValues : Substituted 20 with -20 → SURVIVED
11. sendMTFValues : Substituted 20 with 21 → SURVIVED
12. sendMTFValues : Substituted 20 with 19 → SURVIVED
13. sendMTFValues : Less or equal to less than → SURVIVED
14. sendMTFValues : Less or equal to greater than → SURVIVED
15. sendMTFValues : Less or equal to greater or equal → SURVIVED
16. sendMTFValues : Less or equal to equal → SURVIVED
17. sendMTFValues : Less or equal to not equal → SURVIVED
18. sendMTFValues : Incremented (a++) integer local variable number 15 → SURVIVED
19. sendMTFValues : Decremented (a--) integer local variable number 15 → SURVIVED
20. sendMTFValues : Incremented (++a) integer local variable number 15 → SURVIVED
21. sendMTFValues : Decremented (--a) integer local variable number 15 → SURVIVED
            if (maxLen > 20) {
788 1 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
                panic();
789
            }
790 20 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
6. sendMTFValues : Negated integer local variable number 25 → SURVIVED
7. sendMTFValues : Substituted 1 with 0 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with -1 → SURVIVED
10. sendMTFValues : Substituted 1 with 2 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : greater or equal to less than → SURVIVED
13. sendMTFValues : greater or equal to less or equal → SURVIVED
14. sendMTFValues : greater or equal to greater than → SURVIVED
15. sendMTFValues : greater or equal to equal → SURVIVED
16. sendMTFValues : greater or equal to not equal → SURVIVED
17. sendMTFValues : Incremented (a++) integer local variable number 14 → SURVIVED
18. sendMTFValues : Decremented (a--) integer local variable number 14 → SURVIVED
19. sendMTFValues : Incremented (++a) integer local variable number 14 → SURVIVED
20. sendMTFValues : Decremented (--a) integer local variable number 14 → SURVIVED
            if (minLen < 1) {
791 1 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
                panic();
792
            }
793 26 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::hbAssignCodes → SURVIVED
2. sendMTFValues : Negated integer local variable number 25 → SURVIVED
3. sendMTFValues : Negated integer local variable number 26 → SURVIVED
4. sendMTFValues : Negated integer local variable number 3 → SURVIVED
5. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
7. sendMTFValues : Incremented (a++) integer local variable number 14 → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 15 → SURVIVED
9. sendMTFValues : Incremented (a++) integer local variable number 13 → SURVIVED
10. sendMTFValues : Decremented (a--) integer local variable number 14 → SURVIVED
11. sendMTFValues : Decremented (a--) integer local variable number 15 → SURVIVED
12. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
13. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 14 → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 15 → SURVIVED
17. sendMTFValues : Incremented (++a) integer local variable number 13 → SURVIVED
18. sendMTFValues : Decremented (--a) integer local variable number 14 → SURVIVED
19. sendMTFValues : Decremented (--a) integer local variable number 15 → SURVIVED
20. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → TIMED_OUT
22. sendMTFValues : Negated integer local variable number 4 → KILLED
23. sendMTFValues : Negated integer local variable number 4 → KILLED
24. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
            hbAssignCodes(code[t], len[t], minLen, maxLen, alphaSize);
794
        }
795
796
        /* Transmit the mapping table. */
797
        {
798 7 1. sendMTFValues : Substituted 16 with 17 → SURVIVED
2. sendMTFValues : Substituted 16 with 17 → SURVIVED
3. sendMTFValues : Substituted 16 with 1 → KILLED
4. sendMTFValues : Substituted 16 with 0 → KILLED
5. sendMTFValues : Substituted 16 with -1 → KILLED
6. sendMTFValues : Substituted 16 with -16 → KILLED
7. sendMTFValues : Substituted 16 with 15 → KILLED
            boolean[] inUse16 = new boolean[16];
799 28 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 16 with 1 → SURVIVED
6. sendMTFValues : Substituted 16 with 0 → SURVIVED
7. sendMTFValues : Substituted 16 with -1 → SURVIVED
8. sendMTFValues : Substituted 16 with -16 → SURVIVED
9. sendMTFValues : Substituted 0 with 1 → SURVIVED
10. sendMTFValues : Substituted 16 with 15 → SURVIVED
11. sendMTFValues : greater or equal to less than → SURVIVED
12. sendMTFValues : greater or equal to less or equal → SURVIVED
13. sendMTFValues : greater or equal to equal → SURVIVED
14. sendMTFValues : greater or equal to not equal → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
17. sendMTFValues : Removed increment 1 → TIMED_OUT
18. sendMTFValues : changed conditional boundary → KILLED
19. sendMTFValues : Changed increment from 1 to -1 → KILLED
20. sendMTFValues : Substituted 16 with 17 → KILLED
21. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
22. sendMTFValues : Negated integer local variable number 20 → KILLED
23. sendMTFValues : Substituted 0 with -1 → KILLED
24. sendMTFValues : Substituted 16 with 17 → KILLED
25. sendMTFValues : Substituted 0 with -1 → KILLED
26. sendMTFValues : greater or equal to greater than → KILLED
27. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
28. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            for (i = 0; i < 16; i++) {
800 10 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with -1 → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 0 with -1 → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
7. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
8. sendMTFValues : Negated integer local variable number 20 → KILLED
9. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                inUse16[i] = false;
801 26 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 16 with 1 → SURVIVED
6. sendMTFValues : Substituted 16 with 0 → SURVIVED
7. sendMTFValues : Substituted 16 with -1 → SURVIVED
8. sendMTFValues : Substituted 16 with -16 → SURVIVED
9. sendMTFValues : Substituted 0 with 1 → SURVIVED
10. sendMTFValues : Substituted 16 with 15 → SURVIVED
11. sendMTFValues : greater or equal to less than → SURVIVED
12. sendMTFValues : greater or equal to less or equal → SURVIVED
13. sendMTFValues : greater or equal to equal → SURVIVED
14. sendMTFValues : greater or equal to not equal → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
17. sendMTFValues : changed conditional boundary → KILLED
18. sendMTFValues : Substituted 16 with 17 → KILLED
19. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
20. sendMTFValues : Negated integer local variable number 24 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Substituted 16 with 17 → KILLED
23. sendMTFValues : Substituted 0 with -1 → KILLED
24. sendMTFValues : greater or equal to greater than → KILLED
25. sendMTFValues : Decremented (a--) integer local variable number 5 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 5 → KILLED
                for (j = 0; j < 16; j++) {
802 44 1. sendMTFValues : Replaced integer multiplication with division → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
4. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
5. sendMTFValues : Negated byte array field → SURVIVED
6. sendMTFValues : Replaced integer operation with first member → SURVIVED
7. sendMTFValues : Replaced integer operation with first member → SURVIVED
8. sendMTFValues : Replaced integer operation by second member → SURVIVED
9. sendMTFValues : Replaced integer operation by second member → SURVIVED
10. sendMTFValues : Replaced integer multiplication with division → SURVIVED
11. sendMTFValues : Replaced integer multiplication with modulus → SURVIVED
12. sendMTFValues : Replaced integer multiplication with addition → SURVIVED
13. sendMTFValues : Substituted 16 with 1 → SURVIVED
14. sendMTFValues : Substituted 16 with 0 → SURVIVED
15. sendMTFValues : Substituted 16 with 15 → SURVIVED
16. sendMTFValues : equal to less than → SURVIVED
17. sendMTFValues : equal to less or equal → SURVIVED
18. sendMTFValues : equal to greater than → SURVIVED
19. sendMTFValues : equal to greater or equal → SURVIVED
20. sendMTFValues : equal to not equal → SURVIVED
21. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
22. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
23. sendMTFValues : Incremented (a++) byte array field → SURVIVED
24. sendMTFValues : Decremented (a--) byte array field → SURVIVED
25. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
26. sendMTFValues : Incremented (++a) byte array field → SURVIVED
27. sendMTFValues : Decremented (--a) byte array field → SURVIVED
28. sendMTFValues : Decremented (a--) integer local variable number 5 → TIMED_OUT
29. sendMTFValues : Substituted 16 with 17 → KILLED
30. sendMTFValues : Replaced integer addition with subtraction → KILLED
31. sendMTFValues : Negated integer local variable number 20 → KILLED
32. sendMTFValues : Negated integer local variable number 24 → KILLED
33. sendMTFValues : Replaced integer addition with subtraction → KILLED
34. sendMTFValues : Replaced integer addition with multiplication → KILLED
35. sendMTFValues : Replaced integer addition with division → KILLED
36. sendMTFValues : Replaced integer multiplication with subtraction → KILLED
37. sendMTFValues : Replaced integer addition with modulus → KILLED
38. sendMTFValues : Substituted 16 with -1 → KILLED
39. sendMTFValues : Substituted 16 with -16 → KILLED
40. sendMTFValues : Substituted 16 with 17 → KILLED
41. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
42. sendMTFValues : Incremented (++a) integer local variable number 4 → KILLED
43. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
44. sendMTFValues : Decremented (--a) integer local variable number 5 → KILLED
                    if (inUse[i * 16 + j]) {
803 11 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : Substituted 1 with -1 → SURVIVED
4. sendMTFValues : Substituted 1 with -1 → SURVIVED
5. sendMTFValues : Substituted 1 with 2 → SURVIVED
6. sendMTFValues : Substituted 1 with 0 → SURVIVED
7. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
8. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
9. sendMTFValues : Negated integer local variable number 20 → KILLED
10. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
11. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                        inUse16[i] = true;
804
                    }
805
                }
806
            }
807
808
            //nBytes = bytesOut;
809 26 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 16 with 1 → SURVIVED
6. sendMTFValues : Substituted 16 with 0 → SURVIVED
7. sendMTFValues : Substituted 16 with -1 → SURVIVED
8. sendMTFValues : Substituted 16 with -16 → SURVIVED
9. sendMTFValues : Substituted 0 with 1 → SURVIVED
10. sendMTFValues : Substituted 16 with 15 → SURVIVED
11. sendMTFValues : greater or equal to less than → SURVIVED
12. sendMTFValues : greater or equal to less or equal → SURVIVED
13. sendMTFValues : greater or equal to equal → SURVIVED
14. sendMTFValues : greater or equal to not equal → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
17. sendMTFValues : changed conditional boundary → KILLED
18. sendMTFValues : Substituted 16 with 17 → KILLED
19. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
20. sendMTFValues : Negated integer local variable number 20 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Substituted 16 with 17 → KILLED
23. sendMTFValues : Substituted 0 with -1 → KILLED
24. sendMTFValues : greater or equal to greater than → KILLED
25. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            for (i = 0; i < 16; i++) {
810 18 1. sendMTFValues : negated conditional → SURVIVED
2. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
3. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
4. sendMTFValues : Negated byte array field → SURVIVED
5. sendMTFValues : equal to less than → SURVIVED
6. sendMTFValues : equal to less or equal → SURVIVED
7. sendMTFValues : equal to greater than → SURVIVED
8. sendMTFValues : equal to greater or equal → SURVIVED
9. sendMTFValues : equal to not equal → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
11. sendMTFValues : Incremented (a++) byte array field → SURVIVED
12. sendMTFValues : Decremented (a--) byte array field → SURVIVED
13. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
14. sendMTFValues : Incremented (++a) byte array field → SURVIVED
15. sendMTFValues : Decremented (--a) byte array field → SURVIVED
16. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
17. sendMTFValues : Negated integer local variable number 20 → KILLED
18. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                if (inUse16[i]) {
811 13 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 1 with 0 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → SURVIVED
6. sendMTFValues : Substituted 1 with -1 → SURVIVED
7. sendMTFValues : Substituted 1 with -1 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with -1 → SURVIVED
10. sendMTFValues : Substituted 1 with 2 → SURVIVED
11. sendMTFValues : Substituted 1 with 2 → SURVIVED
12. sendMTFValues : Substituted 1 with 0 → SURVIVED
13. sendMTFValues : Substituted 1 with 0 → SURVIVED
                    bsW(1, 1);
812
                } else {
813 12 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → SURVIVED
6. sendMTFValues : Substituted 1 with -1 → SURVIVED
7. sendMTFValues : Substituted 0 with -1 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with 2 → SURVIVED
10. sendMTFValues : Substituted 0 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 0 with -1 → SURVIVED
                    bsW(1, 0);
814
                }
815
            }
816
817 28 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 16 with 1 → SURVIVED
6. sendMTFValues : Substituted 16 with 0 → SURVIVED
7. sendMTFValues : Substituted 16 with -1 → SURVIVED
8. sendMTFValues : Substituted 16 with -16 → SURVIVED
9. sendMTFValues : Substituted 0 with 1 → SURVIVED
10. sendMTFValues : Substituted 16 with 15 → SURVIVED
11. sendMTFValues : greater or equal to less than → SURVIVED
12. sendMTFValues : greater or equal to less or equal → SURVIVED
13. sendMTFValues : greater or equal to equal → SURVIVED
14. sendMTFValues : greater or equal to not equal → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
17. sendMTFValues : Removed increment 1 → TIMED_OUT
18. sendMTFValues : changed conditional boundary → KILLED
19. sendMTFValues : Changed increment from 1 to -1 → KILLED
20. sendMTFValues : Substituted 16 with 17 → KILLED
21. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
22. sendMTFValues : Negated integer local variable number 20 → KILLED
23. sendMTFValues : Substituted 0 with -1 → KILLED
24. sendMTFValues : Substituted 16 with 17 → KILLED
25. sendMTFValues : Substituted 0 with -1 → KILLED
26. sendMTFValues : greater or equal to greater than → KILLED
27. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
28. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            for (i = 0; i < 16; i++) {
818 18 1. sendMTFValues : negated conditional → SURVIVED
2. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
3. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
4. sendMTFValues : Negated byte array field → SURVIVED
5. sendMTFValues : equal to less than → SURVIVED
6. sendMTFValues : equal to less or equal → SURVIVED
7. sendMTFValues : equal to greater than → SURVIVED
8. sendMTFValues : equal to greater or equal → SURVIVED
9. sendMTFValues : equal to not equal → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
11. sendMTFValues : Incremented (a++) byte array field → SURVIVED
12. sendMTFValues : Decremented (a--) byte array field → SURVIVED
13. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
14. sendMTFValues : Incremented (++a) byte array field → SURVIVED
15. sendMTFValues : Decremented (--a) byte array field → SURVIVED
16. sendMTFValues : Negated integer local variable number 20 → KILLED
17. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
18. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                if (inUse16[i]) {
819 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 16 with 17 → SURVIVED
4. sendMTFValues : negated conditional → SURVIVED
5. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 16 with 1 → SURVIVED
8. sendMTFValues : Substituted 16 with 0 → SURVIVED
9. sendMTFValues : Substituted 16 with -1 → SURVIVED
10. sendMTFValues : Substituted 16 with -16 → SURVIVED
11. sendMTFValues : Substituted 0 with 1 → SURVIVED
12. sendMTFValues : Substituted 16 with 17 → SURVIVED
13. sendMTFValues : Substituted 16 with 15 → SURVIVED
14. sendMTFValues : greater or equal to less than → SURVIVED
15. sendMTFValues : greater or equal to less or equal → SURVIVED
16. sendMTFValues : greater or equal to greater than → SURVIVED
17. sendMTFValues : greater or equal to equal → SURVIVED
18. sendMTFValues : greater or equal to not equal → SURVIVED
19. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
20. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
21. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
22. sendMTFValues : Negated integer local variable number 24 → KILLED
23. sendMTFValues : Substituted 0 with -1 → KILLED
24. sendMTFValues : Substituted 0 with -1 → KILLED
25. sendMTFValues : Decremented (a--) integer local variable number 5 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 5 → KILLED
                    for (j = 0; j < 16; j++) {
820 44 1. sendMTFValues : Substituted 16 with 17 → SURVIVED
2. sendMTFValues : Replaced integer multiplication with division → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
5. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
6. sendMTFValues : Negated byte array field → SURVIVED
7. sendMTFValues : Replaced integer operation with first member → SURVIVED
8. sendMTFValues : Replaced integer operation with first member → SURVIVED
9. sendMTFValues : Replaced integer operation by second member → SURVIVED
10. sendMTFValues : Replaced integer operation by second member → SURVIVED
11. sendMTFValues : Replaced integer multiplication with division → SURVIVED
12. sendMTFValues : Replaced integer multiplication with modulus → SURVIVED
13. sendMTFValues : Replaced integer multiplication with addition → SURVIVED
14. sendMTFValues : Substituted 16 with 1 → SURVIVED
15. sendMTFValues : Substituted 16 with 0 → SURVIVED
16. sendMTFValues : Substituted 16 with 17 → SURVIVED
17. sendMTFValues : Substituted 16 with 15 → SURVIVED
18. sendMTFValues : equal to less than → SURVIVED
19. sendMTFValues : equal to less or equal → SURVIVED
20. sendMTFValues : equal to greater than → SURVIVED
21. sendMTFValues : equal to greater or equal → SURVIVED
22. sendMTFValues : equal to not equal → SURVIVED
23. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
24. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
25. sendMTFValues : Incremented (a++) byte array field → SURVIVED
26. sendMTFValues : Decremented (a--) byte array field → SURVIVED
27. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
28. sendMTFValues : Incremented (++a) byte array field → SURVIVED
29. sendMTFValues : Decremented (--a) byte array field → SURVIVED
30. sendMTFValues : Decremented (a--) integer local variable number 5 → TIMED_OUT
31. sendMTFValues : Replaced integer addition with subtraction → KILLED
32. sendMTFValues : Negated integer local variable number 20 → KILLED
33. sendMTFValues : Negated integer local variable number 24 → KILLED
34. sendMTFValues : Replaced integer addition with subtraction → KILLED
35. sendMTFValues : Replaced integer addition with multiplication → KILLED
36. sendMTFValues : Replaced integer addition with division → KILLED
37. sendMTFValues : Replaced integer multiplication with subtraction → KILLED
38. sendMTFValues : Replaced integer addition with modulus → KILLED
39. sendMTFValues : Substituted 16 with -1 → KILLED
40. sendMTFValues : Substituted 16 with -16 → KILLED
41. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
42. sendMTFValues : Incremented (++a) integer local variable number 4 → KILLED
43. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
44. sendMTFValues : Decremented (--a) integer local variable number 5 → KILLED
                        if (inUse[i * 16 + j]) {
821 13 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 1 with 0 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → SURVIVED
6. sendMTFValues : Substituted 1 with -1 → SURVIVED
7. sendMTFValues : Substituted 1 with -1 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with -1 → SURVIVED
10. sendMTFValues : Substituted 1 with 2 → SURVIVED
11. sendMTFValues : Substituted 1 with 2 → SURVIVED
12. sendMTFValues : Substituted 1 with 0 → SURVIVED
13. sendMTFValues : Substituted 1 with 0 → SURVIVED
                            bsW(1, 1);
822
                        } else {
823 12 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → SURVIVED
6. sendMTFValues : Substituted 1 with -1 → SURVIVED
7. sendMTFValues : Substituted 0 with -1 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with 2 → SURVIVED
10. sendMTFValues : Substituted 0 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 0 with -1 → SURVIVED
                            bsW(1, 0);
824
                        }
825
                    }
826
                }
827
            }
828
829
        }
830
831
        /* Now the selectors. */
832
        //nBytes = bytesOut;
833 13 1. sendMTFValues : Substituted 3 with 4 → SURVIVED
2. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
3. sendMTFValues : Negated integer local variable number 6 → SURVIVED
4. sendMTFValues : Substituted 3 with 1 → SURVIVED
5. sendMTFValues : Substituted 3 with 0 → SURVIVED
6. sendMTFValues : Substituted 3 with -1 → SURVIVED
7. sendMTFValues : Substituted 3 with -3 → SURVIVED
8. sendMTFValues : Substituted 3 with 4 → SURVIVED
9. sendMTFValues : Substituted 3 with 2 → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 17 → SURVIVED
11. sendMTFValues : Decremented (a--) integer local variable number 17 → SURVIVED
12. sendMTFValues : Incremented (++a) integer local variable number 17 → SURVIVED
13. sendMTFValues : Decremented (--a) integer local variable number 17 → SURVIVED
        bsW (3, nGroups);
834 13 1. sendMTFValues : Substituted 15 with 16 → SURVIVED
2. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
3. sendMTFValues : Negated integer local variable number 2 → SURVIVED
4. sendMTFValues : Substituted 15 with 1 → SURVIVED
5. sendMTFValues : Substituted 15 with 0 → SURVIVED
6. sendMTFValues : Substituted 15 with -1 → SURVIVED
7. sendMTFValues : Substituted 15 with -15 → SURVIVED
8. sendMTFValues : Substituted 15 with 16 → SURVIVED
9. sendMTFValues : Substituted 15 with 14 → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 12 → SURVIVED
11. sendMTFValues : Decremented (a--) integer local variable number 12 → SURVIVED
12. sendMTFValues : Incremented (++a) integer local variable number 12 → SURVIVED
13. sendMTFValues : Decremented (--a) integer local variable number 12 → SURVIVED
        bsW (15, nSelectors);
835 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 2 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 12 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 12 → SURVIVED
17. sendMTFValues : Removed increment 1 → TIMED_OUT
18. sendMTFValues : Changed increment from 1 to -1 → KILLED
19. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
20. sendMTFValues : Negated integer local variable number 20 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Substituted 0 with -1 → KILLED
23. sendMTFValues : Incremented (a++) integer local variable number 12 → KILLED
24. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
25. sendMTFValues : Incremented (++a) integer local variable number 12 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
        for (i = 0; i < nSelectors; i++) {
836 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 20 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with -1 → SURVIVED
8. sendMTFValues : Substituted 0 with 1 → SURVIVED
9. sendMTFValues : Substituted 0 with -1 → SURVIVED
10. sendMTFValues : greater or equal to less than → SURVIVED
11. sendMTFValues : greater or equal to less or equal → SURVIVED
12. sendMTFValues : greater or equal to greater than → SURVIVED
13. sendMTFValues : greater or equal to equal → SURVIVED
14. sendMTFValues : greater or equal to not equal → SURVIVED
15. sendMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
16. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
17. sendMTFValues : Incremented (++a) integer local variable number 5 → SURVIVED
18. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
19. sendMTFValues : Changed increment from 1 to -1 → TIMED_OUT
20. sendMTFValues : removed conditional - replaced comparison check with true → TIMED_OUT
21. sendMTFValues : Negated integer local variable number 24 → TIMED_OUT
22. sendMTFValues : Decremented (a--) integer local variable number 5 → TIMED_OUT
23. sendMTFValues : Decremented (--a) integer local variable number 5 → TIMED_OUT
24. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            for (j = 0; j < selectorMtf[i]; j++) {
837 13 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 1 with 0 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → SURVIVED
6. sendMTFValues : Substituted 1 with -1 → SURVIVED
7. sendMTFValues : Substituted 1 with -1 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with -1 → SURVIVED
10. sendMTFValues : Substituted 1 with 2 → SURVIVED
11. sendMTFValues : Substituted 1 with 2 → SURVIVED
12. sendMTFValues : Substituted 1 with 0 → SURVIVED
13. sendMTFValues : Substituted 1 with 0 → SURVIVED
                bsW(1, 1);
838
            }
839 12 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → SURVIVED
6. sendMTFValues : Substituted 1 with -1 → SURVIVED
7. sendMTFValues : Substituted 0 with -1 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with 2 → SURVIVED
10. sendMTFValues : Substituted 0 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 0 with -1 → SURVIVED
            bsW(1, 0);
840
        }
841
842
        /* Now the coding tables. */
843
        //nBytes = bytesOut;
844
845 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 6 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 17 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 17 → SURVIVED
17. sendMTFValues : Removed increment 1 → TIMED_OUT
18. sendMTFValues : Changed increment from 1 to -1 → KILLED
19. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
20. sendMTFValues : Negated integer local variable number 4 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Substituted 0 with -1 → KILLED
23. sendMTFValues : Incremented (a++) integer local variable number 17 → KILLED
24. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
25. sendMTFValues : Incremented (++a) integer local variable number 17 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
        for (t = 0; t < nGroups; t++) {
846 10 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
5. sendMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
6. sendMTFValues : Negated integer local variable number 4 → KILLED
7. sendMTFValues : Substituted 0 with -1 → KILLED
8. sendMTFValues : Substituted 0 with -1 → KILLED
9. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
10. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
            int curr = len[t][0];
847 13 1. sendMTFValues : Substituted 5 with 6 → SURVIVED
2. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
3. sendMTFValues : Negated integer local variable number 19 → SURVIVED
4. sendMTFValues : Substituted 5 with 1 → SURVIVED
5. sendMTFValues : Substituted 5 with 0 → SURVIVED
6. sendMTFValues : Substituted 5 with -1 → SURVIVED
7. sendMTFValues : Substituted 5 with -5 → SURVIVED
8. sendMTFValues : Substituted 5 with 6 → SURVIVED
9. sendMTFValues : Substituted 5 with 4 → SURVIVED
10. sendMTFValues : Incremented (a++) integer local variable number 22 → SURVIVED
11. sendMTFValues : Decremented (a--) integer local variable number 22 → SURVIVED
12. sendMTFValues : Incremented (++a) integer local variable number 22 → SURVIVED
13. sendMTFValues : Decremented (--a) integer local variable number 22 → SURVIVED
            bsW(5, curr);
848 25 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : negated conditional → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. sendMTFValues : Negated integer local variable number 3 → SURVIVED
6. sendMTFValues : Substituted 0 with 1 → SURVIVED
7. sendMTFValues : Substituted 0 with 1 → SURVIVED
8. sendMTFValues : greater or equal to less than → SURVIVED
9. sendMTFValues : greater or equal to less or equal → SURVIVED
10. sendMTFValues : greater or equal to greater than → SURVIVED
11. sendMTFValues : greater or equal to equal → SURVIVED
12. sendMTFValues : greater or equal to not equal → SURVIVED
13. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 13 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Decremented (--a) integer local variable number 13 → SURVIVED
17. sendMTFValues : Changed increment from 1 to -1 → KILLED
18. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
19. sendMTFValues : Negated integer local variable number 20 → KILLED
20. sendMTFValues : Substituted 0 with -1 → KILLED
21. sendMTFValues : Substituted 0 with -1 → KILLED
22. sendMTFValues : Incremented (a++) integer local variable number 13 → KILLED
23. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
24. sendMTFValues : Incremented (++a) integer local variable number 13 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            for (i = 0; i < alphaSize; i++) {
849 24 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
3. sendMTFValues : greater or equal to greater than → SURVIVED
4. sendMTFValues : greater or equal to not equal → SURVIVED
5. sendMTFValues : Incremented (a++) integer local variable number 22 → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
7. sendMTFValues : Incremented (++a) integer local variable number 22 → SURVIVED
8. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
9. sendMTFValues : negated conditional → TIMED_OUT
10. sendMTFValues : removed conditional - replaced comparison check with true → TIMED_OUT
11. sendMTFValues : Negated integer local variable number 19 → TIMED_OUT
12. sendMTFValues : greater or equal to less than → TIMED_OUT
13. sendMTFValues : greater or equal to less or equal → TIMED_OUT
14. sendMTFValues : greater or equal to equal → TIMED_OUT
15. sendMTFValues : Decremented (a--) integer local variable number 22 → TIMED_OUT
16. sendMTFValues : Decremented (--a) integer local variable number 22 → TIMED_OUT
17. sendMTFValues : Negated integer local variable number 4 → KILLED
18. sendMTFValues : Negated integer local variable number 20 → KILLED
19. sendMTFValues : Incremented (a++) integer local variable number 3 → KILLED
20. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
22. sendMTFValues : Incremented (++a) integer local variable number 3 → KILLED
23. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                while (curr < len[t][i]) {
850 15 1. sendMTFValues : Substituted 2 with 3 → SURVIVED
2. sendMTFValues : Substituted 2 with 3 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 2 with 1 → SURVIVED
5. sendMTFValues : Substituted 2 with 1 → SURVIVED
6. sendMTFValues : Substituted 2 with 0 → SURVIVED
7. sendMTFValues : Substituted 2 with 0 → SURVIVED
8. sendMTFValues : Substituted 2 with -1 → SURVIVED
9. sendMTFValues : Substituted 2 with -1 → SURVIVED
10. sendMTFValues : Substituted 2 with -2 → SURVIVED
11. sendMTFValues : Substituted 2 with -2 → SURVIVED
12. sendMTFValues : Substituted 2 with 3 → SURVIVED
13. sendMTFValues : Substituted 2 with 3 → SURVIVED
14. sendMTFValues : Substituted 2 with 1 → SURVIVED
15. sendMTFValues : Substituted 2 with 1 → SURVIVED
                    bsW(2, 2);
851 2 1. sendMTFValues : Changed increment from 1 to -1 → TIMED_OUT
2. sendMTFValues : Removed increment 1 → TIMED_OUT
                    curr++; /* 10 */
852
                }
853 24 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
3. sendMTFValues : Negated integer local variable number 19 → SURVIVED
4. sendMTFValues : Less or equal to less than → SURVIVED
5. sendMTFValues : Less or equal to greater or equal → SURVIVED
6. sendMTFValues : Less or equal to equal → SURVIVED
7. sendMTFValues : Less or equal to not equal → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
9. sendMTFValues : Decremented (a--) integer local variable number 22 → SURVIVED
10. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
11. sendMTFValues : Decremented (--a) integer local variable number 22 → SURVIVED
12. sendMTFValues : negated conditional → TIMED_OUT
13. sendMTFValues : removed conditional - replaced comparison check with true → TIMED_OUT
14. sendMTFValues : Less or equal to greater than → TIMED_OUT
15. sendMTFValues : Incremented (a++) integer local variable number 22 → TIMED_OUT
16. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
17. sendMTFValues : Incremented (++a) integer local variable number 22 → TIMED_OUT
18. sendMTFValues : Negated integer local variable number 4 → KILLED
19. sendMTFValues : Negated integer local variable number 20 → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 3 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 3 → KILLED
22. sendMTFValues : Incremented (++a) integer local variable number 3 → KILLED
23. sendMTFValues : Decremented (--a) integer local variable number 3 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                while (curr > len[t][i]) {
854 15 1. sendMTFValues : Substituted 2 with 3 → SURVIVED
2. sendMTFValues : Substituted 3 with 4 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 2 with 1 → SURVIVED
5. sendMTFValues : Substituted 3 with 1 → SURVIVED
6. sendMTFValues : Substituted 2 with 0 → SURVIVED
7. sendMTFValues : Substituted 3 with 0 → SURVIVED
8. sendMTFValues : Substituted 2 with -1 → SURVIVED
9. sendMTFValues : Substituted 3 with -1 → SURVIVED
10. sendMTFValues : Substituted 2 with -2 → SURVIVED
11. sendMTFValues : Substituted 3 with -3 → SURVIVED
12. sendMTFValues : Substituted 2 with 3 → SURVIVED
13. sendMTFValues : Substituted 3 with 4 → SURVIVED
14. sendMTFValues : Substituted 2 with 1 → SURVIVED
15. sendMTFValues : Substituted 3 with 2 → SURVIVED
                    bsW(2, 3);
855 2 1. sendMTFValues : Changed increment from -1 to 1 → TIMED_OUT
2. sendMTFValues : Removed increment -1 → TIMED_OUT
                    curr--; /* 11 */
856
                }
857 12 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
4. sendMTFValues : Substituted 0 with 1 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → SURVIVED
6. sendMTFValues : Substituted 1 with -1 → SURVIVED
7. sendMTFValues : Substituted 0 with -1 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with 2 → SURVIVED
10. sendMTFValues : Substituted 0 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 0 with -1 → SURVIVED
                bsW (1, 0);
858
            }
859
        }
860
861
        /* And finally, the block data proper */
862
        //nBytes = bytesOut;
863 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with -1 → KILLED
5. sendMTFValues : Substituted 0 with -1 → KILLED
        selCtr = 0;
864 5 1. sendMTFValues : Substituted 0 with 1 → SURVIVED
2. sendMTFValues : Substituted 0 with 1 → SURVIVED
3. sendMTFValues : Substituted 0 with 1 → SURVIVED
4. sendMTFValues : Substituted 0 with -1 → KILLED
5. sendMTFValues : Substituted 0 with -1 → KILLED
        gs = 0;
865
        while (true) {
866 19 1. sendMTFValues : negated conditional → SURVIVED
2. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
3. sendMTFValues : Negated integer field nMTF → SURVIVED
4. sendMTFValues : Less than to greater than → SURVIVED
5. sendMTFValues : Less than to greater or equal → SURVIVED
6. sendMTFValues : Less than to equal → SURVIVED
7. sendMTFValues : Less than to not equal → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
9. sendMTFValues : Incremented (a++) integer field nMTF → SURVIVED
10. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
11. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
12. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
13. sendMTFValues : changed conditional boundary → TIMED_OUT
14. sendMTFValues : removed conditional - replaced comparison check with false → TIMED_OUT
15. sendMTFValues : Negated integer local variable number 9 → TIMED_OUT
16. sendMTFValues : Less than to less or equal → TIMED_OUT
17. sendMTFValues : Decremented (a--) integer local variable number 6 → KILLED
18. sendMTFValues : Incremented (++a) integer field nMTF → KILLED
19. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
            if (gs >= nMTF) {
867
                break;
868
            }
869 32 1. sendMTFValues : Substituted 50 with 51 → SURVIVED
2. sendMTFValues : Substituted 1 with 0 → SURVIVED
3. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
4. sendMTFValues : Negated integer local variable number 9 → SURVIVED
5. sendMTFValues : Replaced integer operation with first member → SURVIVED
6. sendMTFValues : Replaced integer operation by second member → SURVIVED
7. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
8. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
9. sendMTFValues : Replaced integer subtraction with division → SURVIVED
10. sendMTFValues : Substituted 50 with 1 → SURVIVED
11. sendMTFValues : Substituted 1 with 0 → SURVIVED
12. sendMTFValues : Substituted 1 with -1 → SURVIVED
13. sendMTFValues : Substituted 1 with -1 → SURVIVED
14. sendMTFValues : Substituted 50 with 51 → SURVIVED
15. sendMTFValues : Substituted 1 with 2 → SURVIVED
16. sendMTFValues : Substituted 50 with 49 → SURVIVED
17. sendMTFValues : Substituted 1 with 0 → SURVIVED
18. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
19. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
20. sendMTFValues : Replaced integer operation with first member → TIMED_OUT
21. sendMTFValues : Replaced integer operation by second member → TIMED_OUT
22. sendMTFValues : Replaced integer addition with multiplication → TIMED_OUT
23. sendMTFValues : Replaced integer addition with division → TIMED_OUT
24. sendMTFValues : Replaced integer addition with modulus → TIMED_OUT
25. sendMTFValues : Replaced integer subtraction with modulus → TIMED_OUT
26. sendMTFValues : Substituted 50 with 0 → TIMED_OUT
27. sendMTFValues : Replaced integer addition with subtraction → KILLED
28. sendMTFValues : Replaced integer addition with subtraction → KILLED
29. sendMTFValues : Substituted 50 with -1 → KILLED
30. sendMTFValues : Substituted 50 with -50 → KILLED
31. sendMTFValues : Decremented (a--) integer local variable number 6 → KILLED
32. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
            ge = gs + G_SIZE - 1;
870 19 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. sendMTFValues : Negated integer local variable number 11 → SURVIVED
6. sendMTFValues : Negated integer field nMTF → SURVIVED
7. sendMTFValues : Less than to less or equal → SURVIVED
8. sendMTFValues : Less than to greater than → SURVIVED
9. sendMTFValues : Less than to greater or equal → SURVIVED
10. sendMTFValues : Less than to equal → SURVIVED
11. sendMTFValues : Less than to not equal → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
13. sendMTFValues : Incremented (a++) integer field nMTF → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
15. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
17. sendMTFValues : Incremented (++a) integer field nMTF → SURVIVED
18. sendMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
19. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
            if (ge >= nMTF) {
871 18 1. sendMTFValues : Substituted 1 with 0 → SURVIVED
2. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
3. sendMTFValues : Replaced integer operation with first member → SURVIVED
4. sendMTFValues : Replaced integer subtraction with addition → SURVIVED
5. sendMTFValues : Replaced integer subtraction with multiplication → SURVIVED
6. sendMTFValues : Replaced integer subtraction with division → SURVIVED
7. sendMTFValues : Substituted 1 with 0 → SURVIVED
8. sendMTFValues : Substituted 1 with -1 → SURVIVED
9. sendMTFValues : Substituted 1 with -1 → SURVIVED
10. sendMTFValues : Substituted 1 with 0 → SURVIVED
11. sendMTFValues : Decremented (a--) integer field nMTF → SURVIVED
12. sendMTFValues : Incremented (++a) integer field nMTF → SURVIVED
13. sendMTFValues : Decremented (--a) integer fieldnMTF → SURVIVED
14. sendMTFValues : Replaced integer operation by second member → TIMED_OUT
15. sendMTFValues : Replaced integer subtraction with modulus → TIMED_OUT
16. sendMTFValues : Substituted 1 with 2 → TIMED_OUT
17. sendMTFValues : Negated integer field nMTF → KILLED
18. sendMTFValues : Incremented (a++) integer field nMTF → KILLED
                ge = nMTF - 1;
872
            }
873 26 1. sendMTFValues : changed conditional boundary → SURVIVED
2. sendMTFValues : negated conditional → SURVIVED
3. sendMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. sendMTFValues : Negated integer local variable number 9 → SURVIVED
5. sendMTFValues : Negated integer local variable number 11 → SURVIVED
6. sendMTFValues : greater than to less than → SURVIVED
7. sendMTFValues : greater than to less or equal → SURVIVED
8. sendMTFValues : greater than to greater or equal → SURVIVED
9. sendMTFValues : greater than to equal → SURVIVED
10. sendMTFValues : greater than to not equal → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Removed increment 1 → TIMED_OUT
17. sendMTFValues : Changed increment from 1 to -1 → KILLED
18. sendMTFValues : removed conditional - replaced comparison check with true → KILLED
19. sendMTFValues : Negated integer local variable number 20 → KILLED
20. sendMTFValues : Incremented (a++) integer local variable number 7 → KILLED
21. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
22. sendMTFValues : Decremented (a--) integer local variable number 7 → KILLED
23. sendMTFValues : Incremented (++a) integer local variable number 7 → KILLED
24. sendMTFValues : Decremented (--a) integer local variable number 6 → KILLED
25. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
26. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
            for (i = gs; i <= ge; i++) {
874 36 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED
2. sendMTFValues : Negated integer local variable number 27 → SURVIVED
3. sendMTFValues : Negated integer local variable number 27 → SURVIVED
4. sendMTFValues : Negated integer array field → SURVIVED
5. sendMTFValues : Incremented (a++) integer local variable number 16 → SURVIVED
6. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
7. sendMTFValues : Incremented (a++) short array field → SURVIVED
8. sendMTFValues : Incremented (a++) integer local variable number 16 → SURVIVED
9. sendMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
10. sendMTFValues : Incremented (a++) short array field → SURVIVED
11. sendMTFValues : Incremented (a++) integer array field → SURVIVED
12. sendMTFValues : Decremented (a--) short array field → SURVIVED
13. sendMTFValues : Decremented (a--) integer array field → SURVIVED
14. sendMTFValues : Incremented (++a) integer local variable number 16 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
16. sendMTFValues : Incremented (++a) short array field → SURVIVED
17. sendMTFValues : Incremented (++a) integer local variable number 16 → SURVIVED
18. sendMTFValues : Incremented (++a) integer local variable number 4 → SURVIVED
19. sendMTFValues : Incremented (++a) short array field → SURVIVED
20. sendMTFValues : Incremented (++a) integer array field → SURVIVED
21. sendMTFValues : Decremented (--a) integer array field → SURVIVED
22. sendMTFValues : Decremented (a--) integer local variable number 4 → TIMED_OUT
23. sendMTFValues : Negated integer local variable number 20 → KILLED
24. sendMTFValues : Negated short array field → KILLED
25. sendMTFValues : Negated integer local variable number 20 → KILLED
26. sendMTFValues : Negated short array field → KILLED
27. sendMTFValues : Decremented (a--) integer local variable number 16 → KILLED
28. sendMTFValues : Decremented (a--) integer local variable number 4 → KILLED
29. sendMTFValues : Decremented (a--) short array field → KILLED
30. sendMTFValues : Decremented (a--) integer local variable number 16 → KILLED
31. sendMTFValues : Decremented (--a) integer local variable number 16 → KILLED
32. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
33. sendMTFValues : Decremented (--a) short array field → KILLED
34. sendMTFValues : Decremented (--a) integer local variable number 16 → KILLED
35. sendMTFValues : Decremented (--a) integer local variable number 4 → KILLED
36. sendMTFValues : Decremented (--a) short array field → KILLED
                bsW(len[selector[selCtr]][szptr[i]],
875
                    code[selector[selCtr]][szptr[i]]);
876
            }
877
878 18 1. sendMTFValues : Substituted 1 with 2 → SURVIVED
2. sendMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
3. sendMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
4. sendMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
5. sendMTFValues : Substituted 1 with 0 → KILLED
6. sendMTFValues : Replaced integer addition with subtraction → KILLED
7. sendMTFValues : Negated integer local variable number 11 → KILLED
8. sendMTFValues : Replaced integer operation with first member → KILLED
9. sendMTFValues : Replaced integer operation by second member → KILLED
10. sendMTFValues : Replaced integer addition with subtraction → KILLED
11. sendMTFValues : Replaced integer addition with multiplication → KILLED
12. sendMTFValues : Replaced integer addition with division → KILLED
13. sendMTFValues : Replaced integer addition with modulus → KILLED
14. sendMTFValues : Substituted 1 with 0 → KILLED
15. sendMTFValues : Substituted 1 with -1 → KILLED
16. sendMTFValues : Substituted 1 with -1 → KILLED
17. sendMTFValues : Substituted 1 with 0 → KILLED
18. sendMTFValues : Decremented (--a) integer local variable number 7 → KILLED
            gs = ge + 1;
879 2 1. sendMTFValues : Changed increment from 1 to -1 → SURVIVED
2. sendMTFValues : Removed increment 1 → SURVIVED
            selCtr++;
880
        }
881 18 1. sendMTFValues : negated conditional → SURVIVED
2. sendMTFValues : removed conditional - replaced equality check with false → SURVIVED
3. sendMTFValues : removed conditional - replaced equality check with true → SURVIVED
4. sendMTFValues : Negated integer local variable number 27 → SURVIVED
5. sendMTFValues : Negated integer local variable number 2 → SURVIVED
6. sendMTFValues : equal to less than → SURVIVED
7. sendMTFValues : equal to less or equal → SURVIVED
8. sendMTFValues : equal to greater than → SURVIVED
9. sendMTFValues : equal to greater or equal → SURVIVED
10. sendMTFValues : equal to not equal → SURVIVED
11. sendMTFValues : Incremented (a++) integer local variable number 16 → SURVIVED
12. sendMTFValues : Incremented (a++) integer local variable number 12 → SURVIVED
13. sendMTFValues : Decremented (a--) integer local variable number 16 → SURVIVED
14. sendMTFValues : Decremented (a--) integer local variable number 12 → SURVIVED
15. sendMTFValues : Incremented (++a) integer local variable number 16 → SURVIVED
16. sendMTFValues : Incremented (++a) integer local variable number 12 → SURVIVED
17. sendMTFValues : Decremented (--a) integer local variable number 16 → SURVIVED
18. sendMTFValues : Decremented (--a) integer local variable number 12 → SURVIVED
        if (!(selCtr == nSelectors)) {
882 1 1. sendMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
            panic();
883
        }
884
    }
885
886
    private void moveToFrontCodeAndSend () throws IOException {
887 13 1. moveToFrontCodeAndSend : Substituted 24 with 25 → SURVIVED
2. moveToFrontCodeAndSend : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutIntVS → SURVIVED
3. moveToFrontCodeAndSend : Negated integer field origPtr → SURVIVED
4. moveToFrontCodeAndSend : Substituted 24 with 1 → SURVIVED
5. moveToFrontCodeAndSend : Substituted 24 with 0 → SURVIVED
6. moveToFrontCodeAndSend : Substituted 24 with -1 → SURVIVED
7. moveToFrontCodeAndSend : Substituted 24 with -24 → SURVIVED
8. moveToFrontCodeAndSend : Substituted 24 with 25 → SURVIVED
9. moveToFrontCodeAndSend : Substituted 24 with 23 → SURVIVED
10. moveToFrontCodeAndSend : Incremented (a++) integer field origPtr → SURVIVED
11. moveToFrontCodeAndSend : Decremented (a--) integer field origPtr → SURVIVED
12. moveToFrontCodeAndSend : Incremented (++a) integer field origPtr → SURVIVED
13. moveToFrontCodeAndSend : Decremented (--a) integer fieldorigPtr → SURVIVED
        bsPutIntVS(24, origPtr);
888 1 1. moveToFrontCodeAndSend : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::generateMTFValues → SURVIVED
        generateMTFValues();
889 1 1. moveToFrontCodeAndSend : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::sendMTFValues → SURVIVED
        sendMTFValues();
890
    }
891
892
    private OutputStream bsStream;
893
894
    private void simpleSort(int lo, int hi, int d) {
895
        int i, j, h, bigN, hp;
896
        int v;
897
898 30 1. simpleSort : Substituted 1 with 0 → SURVIVED
2. simpleSort : Replaced integer subtraction with addition → SURVIVED
3. simpleSort : Replaced integer addition with subtraction → SURVIVED
4. simpleSort : Negated integer local variable number 2 → SURVIVED
5. simpleSort : Negated integer local variable number 1 → SURVIVED
6. simpleSort : Replaced integer operation with first member → SURVIVED
7. simpleSort : Replaced integer operation with first member → SURVIVED
8. simpleSort : Replaced integer operation by second member → SURVIVED
9. simpleSort : Replaced integer operation by second member → SURVIVED
10. simpleSort : Replaced integer subtraction with addition → SURVIVED
11. simpleSort : Replaced integer addition with subtraction → SURVIVED
12. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
13. simpleSort : Replaced integer addition with multiplication → SURVIVED
14. simpleSort : Replaced integer addition with division → SURVIVED
15. simpleSort : Replaced integer addition with modulus → SURVIVED
16. simpleSort : Substituted 1 with 0 → SURVIVED
17. simpleSort : Substituted 1 with -1 → SURVIVED
18. simpleSort : Substituted 1 with -1 → SURVIVED
19. simpleSort : Substituted 1 with 2 → SURVIVED
20. simpleSort : Substituted 1 with 0 → SURVIVED
21. simpleSort : Incremented (a++) integer local variable number 2 → SURVIVED
22. simpleSort : Incremented (a++) integer local variable number 1 → SURVIVED
23. simpleSort : Decremented (a--) integer local variable number 2 → SURVIVED
24. simpleSort : Incremented (++a) integer local variable number 2 → SURVIVED
25. simpleSort : Incremented (++a) integer local variable number 1 → SURVIVED
26. simpleSort : Decremented (--a) integer local variable number 2 → SURVIVED
27. simpleSort : Replaced integer subtraction with division → KILLED
28. simpleSort : Replaced integer subtraction with modulus → KILLED
29. simpleSort : Decremented (a--) integer local variable number 1 → KILLED
30. simpleSort : Decremented (--a) integer local variable number 1 → KILLED
        bigN = hi - lo + 1;
899 21 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : Substituted 2 with 3 → SURVIVED
3. simpleSort : negated conditional → SURVIVED
4. simpleSort : removed conditional - replaced comparison check with false → SURVIVED
5. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
6. simpleSort : Negated integer local variable number 4 → SURVIVED
7. simpleSort : Substituted 2 with 1 → SURVIVED
8. simpleSort : Substituted 2 with 0 → SURVIVED
9. simpleSort : Substituted 2 with -1 → SURVIVED
10. simpleSort : Substituted 2 with -2 → SURVIVED
11. simpleSort : Substituted 2 with 3 → SURVIVED
12. simpleSort : Substituted 2 with 1 → SURVIVED
13. simpleSort : greater or equal to less than → SURVIVED
14. simpleSort : greater or equal to less or equal → SURVIVED
15. simpleSort : greater or equal to greater than → SURVIVED
16. simpleSort : greater or equal to equal → SURVIVED
17. simpleSort : greater or equal to not equal → SURVIVED
18. simpleSort : Incremented (a++) integer local variable number 7 → SURVIVED
19. simpleSort : Decremented (a--) integer local variable number 7 → SURVIVED
20. simpleSort : Incremented (++a) integer local variable number 7 → SURVIVED
21. simpleSort : Decremented (--a) integer local variable number 7 → SURVIVED
        if (bigN < 2) {
900
            return;
901
        }
902
903 5 1. simpleSort : Substituted 0 with 1 → SURVIVED
2. simpleSort : Substituted 0 with 1 → SURVIVED
3. simpleSort : Substituted 0 with 1 → SURVIVED
4. simpleSort : Substituted 0 with -1 → KILLED
5. simpleSort : Substituted 0 with -1 → KILLED
        hp = 0;
904 24 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : negated conditional → SURVIVED
3. simpleSort : removed conditional - replaced comparison check with false → SURVIVED
4. simpleSort : Negated integer local variable number 4 → SURVIVED
5. simpleSort : greater or equal to less than → SURVIVED
6. simpleSort : greater or equal to less or equal → SURVIVED
7. simpleSort : greater or equal to greater than → SURVIVED
8. simpleSort : greater or equal to not equal → SURVIVED
9. simpleSort : Incremented (a++) integer local variable number 8 → SURVIVED
10. simpleSort : Incremented (a++) integer array field → SURVIVED
11. simpleSort : Incremented (a++) integer local variable number 7 → SURVIVED
12. simpleSort : Decremented (a--) integer array field → SURVIVED
13. simpleSort : Decremented (a--) integer local variable number 7 → SURVIVED
14. simpleSort : Incremented (++a) integer local variable number 8 → SURVIVED
15. simpleSort : Incremented (++a) integer array field → SURVIVED
16. simpleSort : Incremented (++a) integer local variable number 7 → SURVIVED
17. simpleSort : Decremented (--a) integer array field → SURVIVED
18. simpleSort : Decremented (--a) integer local variable number 7 → SURVIVED
19. simpleSort : Decremented (a--) integer local variable number 8 → TIMED_OUT
20. simpleSort : removed conditional - replaced comparison check with true → KILLED
21. simpleSort : Negated integer local variable number 5 → KILLED
22. simpleSort : Negated integer array field → KILLED
23. simpleSort : greater or equal to equal → KILLED
24. simpleSort : Decremented (--a) integer local variable number 8 → KILLED
        while (incs[hp] < bigN) {
905 1 1. simpleSort : Changed increment from 1 to -1 → KILLED
            hp++;
906
        }
907 2 1. simpleSort : Changed increment from -1 to 1 → SURVIVED
2. simpleSort : Removed increment -1 → SURVIVED
        hp--;
908
909 16 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : negated conditional → SURVIVED
3. simpleSort : removed conditional - replaced comparison check with false → SURVIVED
4. simpleSort : Negated integer local variable number 5 → SURVIVED
5. simpleSort : Less than to less or equal → SURVIVED
6. simpleSort : Less than to greater than → SURVIVED
7. simpleSort : Less than to greater or equal → SURVIVED
8. simpleSort : Less than to equal → SURVIVED
9. simpleSort : Less than to not equal → SURVIVED
10. simpleSort : Decremented (--a) integer local variable number 8 → SURVIVED
11. simpleSort : Removed increment -1 → TIMED_OUT
12. simpleSort : Incremented (a++) integer local variable number 8 → TIMED_OUT
13. simpleSort : Incremented (++a) integer local variable number 8 → TIMED_OUT
14. simpleSort : Changed increment from -1 to 1 → KILLED
15. simpleSort : removed conditional - replaced comparison check with true → KILLED
16. simpleSort : Decremented (a--) integer local variable number 8 → KILLED
        for (; hp >= 0; hp--) {
910 10 1. simpleSort : Incremented (a++) integer array field → SURVIVED
2. simpleSort : Decremented (a--) integer local variable number 8 → SURVIVED
3. simpleSort : Decremented (a--) integer array field → SURVIVED
4. simpleSort : Incremented (++a) integer array field → SURVIVED
5. simpleSort : Decremented (--a) integer array field → SURVIVED
6. simpleSort : Incremented (a++) integer local variable number 8 → TIMED_OUT
7. simpleSort : Incremented (++a) integer local variable number 8 → TIMED_OUT
8. simpleSort : Negated integer local variable number 5 → KILLED
9. simpleSort : Negated integer array field → KILLED
10. simpleSort : Decremented (--a) integer local variable number 8 → KILLED
            h = incs[hp];
911
912 17 1. simpleSort : Negated integer local variable number 1 → SURVIVED
2. simpleSort : Replaced integer operation by second member → SURVIVED
3. simpleSort : Incremented (a++) integer local variable number 1 → SURVIVED
4. simpleSort : Decremented (a--) integer local variable number 6 → SURVIVED
5. simpleSort : Incremented (++a) integer local variable number 1 → SURVIVED
6. simpleSort : Incremented (++a) integer local variable number 6 → SURVIVED
7. simpleSort : Decremented (--a) integer local variable number 6 → SURVIVED
8. simpleSort : Replaced integer addition with subtraction → KILLED
9. simpleSort : Negated integer local variable number 6 → KILLED
10. simpleSort : Replaced integer operation with first member → KILLED
11. simpleSort : Replaced integer addition with subtraction → KILLED
12. simpleSort : Replaced integer addition with multiplication → KILLED
13. simpleSort : Replaced integer addition with division → KILLED
14. simpleSort : Replaced integer addition with modulus → KILLED
15. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
16. simpleSort : Decremented (a--) integer local variable number 1 → KILLED
17. simpleSort : Decremented (--a) integer local variable number 1 → KILLED
            i = lo + h;
913
            while (true) {
914
                /* copy 1 */
915 19 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : negated conditional → SURVIVED
3. simpleSort : removed conditional - replaced comparison check with false → SURVIVED
4. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
5. simpleSort : Negated integer local variable number 7 → SURVIVED
6. simpleSort : Negated integer local variable number 2 → SURVIVED
7. simpleSort : Less or equal to less than → SURVIVED
8. simpleSort : Less or equal to greater than → SURVIVED
9. simpleSort : Less or equal to greater or equal → SURVIVED
10. simpleSort : Less or equal to equal → SURVIVED
11. simpleSort : Less or equal to not equal → SURVIVED
12. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
13. simpleSort : Incremented (a++) integer local variable number 2 → SURVIVED
14. simpleSort : Decremented (a--) integer local variable number 2 → SURVIVED
15. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
16. simpleSort : Incremented (++a) integer local variable number 2 → SURVIVED
17. simpleSort : Decremented (--a) integer local variable number 2 → SURVIVED
18. simpleSort : Decremented (a--) integer local variable number 4 → KILLED
19. simpleSort : Decremented (--a) integer local variable number 4 → KILLED
                if (i > hi) {
916
                    break;
917
                }
918 10 1. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
2. simpleSort : Incremented (a++) integer array field → SURVIVED
3. simpleSort : Decremented (a--) integer array field → SURVIVED
4. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
5. simpleSort : Incremented (++a) integer array field → SURVIVED
6. simpleSort : Negated integer local variable number 7 → KILLED
7. simpleSort : Negated integer array field → KILLED
8. simpleSort : Decremented (a--) integer local variable number 4 → KILLED
9. simpleSort : Decremented (--a) integer local variable number 4 → KILLED
10. simpleSort : Decremented (--a) integer array field → KILLED
                v = zptr[i];
919 5 1. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
2. simpleSort : Decremented (a--) integer local variable number 4 → SURVIVED
3. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
4. simpleSort : Negated integer local variable number 7 → KILLED
5. simpleSort : Decremented (--a) integer local variable number 4 → KILLED
                j = i;
920 60 1. simpleSort : Replaced integer subtraction with addition → SURVIVED
2. simpleSort : Replaced integer addition with subtraction → SURVIVED
3. simpleSort : Replaced integer addition with subtraction → SURVIVED
4. simpleSort : negated conditional → SURVIVED
5. simpleSort : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
6. simpleSort : removed conditional - replaced equality check with false → SURVIVED
7. simpleSort : removed conditional - replaced equality check with true → SURVIVED
8. simpleSort : Negated integer local variable number 6 → SURVIVED
9. simpleSort : Negated integer local variable number 3 → SURVIVED
10. simpleSort : Negated integer local variable number 3 → SURVIVED
11. simpleSort : Replaced integer operation with first member → SURVIVED
12. simpleSort : Replaced integer operation with first member → SURVIVED
13. simpleSort : Replaced integer operation with first member → SURVIVED
14. simpleSort : Replaced integer operation by second member → SURVIVED
15. simpleSort : Replaced integer operation by second member → SURVIVED
16. simpleSort : Replaced integer operation by second member → SURVIVED
17. simpleSort : Replaced integer subtraction with addition → SURVIVED
18. simpleSort : Replaced integer addition with subtraction → SURVIVED
19. simpleSort : Replaced integer addition with subtraction → SURVIVED
20. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
21. simpleSort : Replaced integer addition with multiplication → SURVIVED
22. simpleSort : Replaced integer addition with multiplication → SURVIVED
23. simpleSort : Replaced integer subtraction with division → SURVIVED
24. simpleSort : Replaced integer subtraction with modulus → SURVIVED
25. simpleSort : equal to less than → SURVIVED
26. simpleSort : equal to less or equal → SURVIVED
27. simpleSort : equal to greater than → SURVIVED
28. simpleSort : equal to greater or equal → SURVIVED
29. simpleSort : equal to not equal → SURVIVED
30. simpleSort : Incremented (a++) integer array field → SURVIVED
31. simpleSort : Incremented (a++) integer local variable number 3 → SURVIVED
32. simpleSort : Incremented (a++) integer local variable number 9 → SURVIVED
33. simpleSort : Incremented (a++) integer local variable number 3 → SURVIVED
34. simpleSort : Incremented (++a) integer local variable number 5 → SURVIVED
35. simpleSort : Incremented (++a) integer array field → SURVIVED
36. simpleSort : Incremented (++a) integer local variable number 3 → SURVIVED
37. simpleSort : Incremented (++a) integer local variable number 9 → SURVIVED
38. simpleSort : Incremented (++a) integer local variable number 3 → SURVIVED
39. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
40. simpleSort : Negated integer local variable number 9 → KILLED
41. simpleSort : Negated integer array field → KILLED
42. simpleSort : Negated integer local variable number 8 → KILLED
43. simpleSort : Replaced integer addition with division → KILLED
44. simpleSort : Replaced integer addition with division → KILLED
45. simpleSort : Replaced integer addition with modulus → KILLED
46. simpleSort : Replaced integer addition with modulus → KILLED
47. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
48. simpleSort : Decremented (a--) integer local variable number 5 → KILLED
49. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
50. simpleSort : Decremented (a--) integer array field → KILLED
51. simpleSort : Decremented (a--) integer local variable number 3 → KILLED
52. simpleSort : Decremented (a--) integer local variable number 9 → KILLED
53. simpleSort : Decremented (a--) integer local variable number 3 → KILLED
54. simpleSort : Incremented (++a) integer local variable number 6 → KILLED
55. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
56. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
57. simpleSort : Decremented (--a) integer array field → KILLED
58. simpleSort : Decremented (--a) integer local variable number 3 → KILLED
59. simpleSort : Decremented (--a) integer local variable number 9 → KILLED
60. simpleSort : Decremented (--a) integer local variable number 3 → KILLED
                while (fullGtU(zptr[j - h] + d, v + d)) {
921 27 1. simpleSort : Replaced integer subtraction with addition → SURVIVED
2. simpleSort : Negated integer local variable number 6 → SURVIVED
3. simpleSort : Replaced integer operation with first member → SURVIVED
4. simpleSort : Replaced integer operation by second member → SURVIVED
5. simpleSort : Replaced integer subtraction with addition → SURVIVED
6. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
7. simpleSort : Replaced integer subtraction with division → SURVIVED
8. simpleSort : Replaced integer subtraction with modulus → SURVIVED
9. simpleSort : Incremented (a++) integer array field → SURVIVED
10. simpleSort : Decremented (a--) integer array field → SURVIVED
11. simpleSort : Incremented (++a) integer array field → SURVIVED
12. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
13. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
14. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
15. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
16. simpleSort : Negated integer local variable number 9 → KILLED
17. simpleSort : Negated integer local variable number 9 → KILLED
18. simpleSort : Negated integer array field → KILLED
19. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
20. simpleSort : Decremented (a--) integer local variable number 5 → KILLED
21. simpleSort : Decremented (a--) integer local variable number 5 → KILLED
22. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
23. simpleSort : Incremented (++a) integer local variable number 6 → KILLED
24. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
25. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
26. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
27. simpleSort : Decremented (--a) integer array field → KILLED
                    zptr[j] = zptr[j - h];
922 17 1. simpleSort : Replaced integer subtraction with modulus → SURVIVED
2. simpleSort : Incremented (a++) integer local variable number 5 → SURVIVED
3. simpleSort : Incremented (a++) integer local variable number 6 → SURVIVED
4. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
5. simpleSort : Replaced integer operation with first member → TIMED_OUT
6. simpleSort : Replaced integer operation by second member → TIMED_OUT
7. simpleSort : Replaced integer subtraction with division → TIMED_OUT
8. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
9. simpleSort : Replaced integer subtraction with addition → KILLED
10. simpleSort : Negated integer local variable number 9 → KILLED
11. simpleSort : Negated integer local variable number 6 → KILLED
12. simpleSort : Replaced integer subtraction with addition → KILLED
13. simpleSort : Replaced integer subtraction with multiplication → KILLED
14. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
15. simpleSort : Incremented (++a) integer local variable number 6 → KILLED
16. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
17. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
                    j = j - h;
923 44 1. simpleSort : Substituted 1 with 0 → SURVIVED
2. simpleSort : Replaced integer subtraction with addition → SURVIVED
3. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
4. simpleSort : Negated integer local variable number 9 → SURVIVED
5. simpleSort : Negated integer local variable number 1 → SURVIVED
6. simpleSort : Replaced integer operation with first member → SURVIVED
7. simpleSort : Replaced integer operation by second member → SURVIVED
8. simpleSort : Replaced integer subtraction with addition → SURVIVED
9. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
10. simpleSort : Replaced integer subtraction with division → SURVIVED
11. simpleSort : Substituted 1 with 0 → SURVIVED
12. simpleSort : Substituted 1 with -1 → SURVIVED
13. simpleSort : Substituted 1 with -1 → SURVIVED
14. simpleSort : Substituted 1 with 0 → SURVIVED
15. simpleSort : Incremented (a++) integer local variable number 1 → SURVIVED
16. simpleSort : Incremented (++a) integer local variable number 1 → SURVIVED
17. simpleSort : Incremented (++a) integer local variable number 6 → SURVIVED
18. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
19. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
20. simpleSort : changed conditional boundary → KILLED
21. simpleSort : Replaced integer addition with subtraction → KILLED
22. simpleSort : negated conditional → KILLED
23. simpleSort : removed conditional - replaced comparison check with false → KILLED
24. simpleSort : Negated integer local variable number 6 → KILLED
25. simpleSort : Replaced integer operation with first member → KILLED
26. simpleSort : Replaced integer operation by second member → KILLED
27. simpleSort : Replaced integer addition with subtraction → KILLED
28. simpleSort : Replaced integer addition with multiplication → KILLED
29. simpleSort : Replaced integer addition with division → KILLED
30. simpleSort : Replaced integer addition with modulus → KILLED
31. simpleSort : Replaced integer subtraction with modulus → KILLED
32. simpleSort : Substituted 1 with 2 → KILLED
33. simpleSort : greater than to less than → KILLED
34. simpleSort : greater than to less or equal → KILLED
35. simpleSort : greater than to greater or equal → KILLED
36. simpleSort : greater than to equal → KILLED
37. simpleSort : greater than to not equal → KILLED
38. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
39. simpleSort : Decremented (a--) integer local variable number 5 → KILLED
40. simpleSort : Decremented (a--) integer local variable number 1 → KILLED
41. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
42. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
43. simpleSort : Decremented (--a) integer local variable number 1 → KILLED
44. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
                    if (j <= (lo + h - 1)) {
924
                        break;
925
                    }
926
                }
927 10 1. simpleSort : Incremented (a++) integer local variable number 5 → SURVIVED
2. simpleSort : Incremented (a++) integer local variable number 9 → SURVIVED
3. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
4. simpleSort : Decremented (a--) integer local variable number 9 → SURVIVED
5. simpleSort : Incremented (++a) integer local variable number 5 → SURVIVED
6. simpleSort : Incremented (++a) integer local variable number 9 → SURVIVED
7. simpleSort : Negated integer local variable number 9 → KILLED
8. simpleSort : Negated integer local variable number 8 → KILLED
9. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
10. simpleSort : Decremented (--a) integer local variable number 9 → KILLED
                zptr[j] = v;
928 2 1. simpleSort : Removed increment 1 → SURVIVED
2. simpleSort : Changed increment from 1 to -1 → KILLED
                i++;
929
930
                /* copy 2 */
931 19 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : negated conditional → SURVIVED
3. simpleSort : removed conditional - replaced comparison check with false → SURVIVED
4. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
5. simpleSort : Negated integer local variable number 7 → SURVIVED
6. simpleSort : Negated integer local variable number 2 → SURVIVED
7. simpleSort : Less or equal to less than → SURVIVED
8. simpleSort : Less or equal to greater than → SURVIVED
9. simpleSort : Less or equal to greater or equal → SURVIVED
10. simpleSort : Less or equal to equal → SURVIVED
11. simpleSort : Less or equal to not equal → SURVIVED
12. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
13. simpleSort : Incremented (a++) integer local variable number 2 → SURVIVED
14. simpleSort : Decremented (a--) integer local variable number 4 → SURVIVED
15. simpleSort : Decremented (a--) integer local variable number 2 → SURVIVED
16. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
17. simpleSort : Incremented (++a) integer local variable number 2 → SURVIVED
18. simpleSort : Decremented (--a) integer local variable number 4 → SURVIVED
19. simpleSort : Decremented (--a) integer local variable number 2 → SURVIVED
                if (i > hi) {
932
                    break;
933
                }
934 10 1. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
2. simpleSort : Incremented (a++) integer array field → SURVIVED
3. simpleSort : Decremented (a--) integer local variable number 4 → SURVIVED
4. simpleSort : Decremented (a--) integer array field → SURVIVED
5. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
6. simpleSort : Incremented (++a) integer array field → SURVIVED
7. simpleSort : Decremented (--a) integer local variable number 4 → SURVIVED
8. simpleSort : Decremented (--a) integer array field → SURVIVED
9. simpleSort : Negated integer local variable number 7 → KILLED
10. simpleSort : Negated integer array field → KILLED
                v = zptr[i];
935 5 1. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
2. simpleSort : Decremented (a--) integer local variable number 4 → SURVIVED
3. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
4. simpleSort : Decremented (--a) integer local variable number 4 → SURVIVED
5. simpleSort : Negated integer local variable number 7 → KILLED
                j = i;
936 60 1. simpleSort : Replaced integer subtraction with addition → SURVIVED
2. simpleSort : Replaced integer addition with subtraction → SURVIVED
3. simpleSort : Replaced integer addition with subtraction → SURVIVED
4. simpleSort : negated conditional → SURVIVED
5. simpleSort : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
6. simpleSort : removed conditional - replaced equality check with false → SURVIVED
7. simpleSort : removed conditional - replaced equality check with true → SURVIVED
8. simpleSort : Negated integer local variable number 6 → SURVIVED
9. simpleSort : Negated integer local variable number 3 → SURVIVED
10. simpleSort : Negated integer local variable number 3 → SURVIVED
11. simpleSort : Replaced integer operation with first member → SURVIVED
12. simpleSort : Replaced integer operation with first member → SURVIVED
13. simpleSort : Replaced integer operation with first member → SURVIVED
14. simpleSort : Replaced integer operation by second member → SURVIVED
15. simpleSort : Replaced integer operation by second member → SURVIVED
16. simpleSort : Replaced integer operation by second member → SURVIVED
17. simpleSort : Replaced integer subtraction with addition → SURVIVED
18. simpleSort : Replaced integer addition with subtraction → SURVIVED
19. simpleSort : Replaced integer addition with subtraction → SURVIVED
20. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
21. simpleSort : Replaced integer addition with multiplication → SURVIVED
22. simpleSort : Replaced integer addition with multiplication → SURVIVED
23. simpleSort : Replaced integer subtraction with division → SURVIVED
24. simpleSort : Replaced integer subtraction with modulus → SURVIVED
25. simpleSort : equal to less than → SURVIVED
26. simpleSort : equal to less or equal → SURVIVED
27. simpleSort : equal to greater than → SURVIVED
28. simpleSort : equal to greater or equal → SURVIVED
29. simpleSort : equal to not equal → SURVIVED
30. simpleSort : Incremented (a++) integer array field → SURVIVED
31. simpleSort : Incremented (a++) integer local variable number 3 → SURVIVED
32. simpleSort : Incremented (a++) integer local variable number 9 → SURVIVED
33. simpleSort : Incremented (a++) integer local variable number 3 → SURVIVED
34. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
35. simpleSort : Incremented (++a) integer local variable number 5 → SURVIVED
36. simpleSort : Incremented (++a) integer array field → SURVIVED
37. simpleSort : Incremented (++a) integer local variable number 3 → SURVIVED
38. simpleSort : Incremented (++a) integer local variable number 9 → SURVIVED
39. simpleSort : Incremented (++a) integer local variable number 3 → SURVIVED
40. simpleSort : Decremented (--a) integer local variable number 5 → SURVIVED
41. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
42. simpleSort : Negated integer local variable number 9 → KILLED
43. simpleSort : Negated integer array field → KILLED
44. simpleSort : Negated integer local variable number 8 → KILLED
45. simpleSort : Replaced integer addition with division → KILLED
46. simpleSort : Replaced integer addition with division → KILLED
47. simpleSort : Replaced integer addition with modulus → KILLED
48. simpleSort : Replaced integer addition with modulus → KILLED
49. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
50. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
51. simpleSort : Decremented (a--) integer array field → KILLED
52. simpleSort : Decremented (a--) integer local variable number 3 → KILLED
53. simpleSort : Decremented (a--) integer local variable number 9 → KILLED
54. simpleSort : Decremented (a--) integer local variable number 3 → KILLED
55. simpleSort : Incremented (++a) integer local variable number 6 → KILLED
56. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
57. simpleSort : Decremented (--a) integer array field → KILLED
58. simpleSort : Decremented (--a) integer local variable number 3 → KILLED
59. simpleSort : Decremented (--a) integer local variable number 9 → KILLED
60. simpleSort : Decremented (--a) integer local variable number 3 → KILLED
                while (fullGtU(zptr[j - h] + d, v + d)) {
937 27 1. simpleSort : Replaced integer subtraction with addition → SURVIVED
2. simpleSort : Negated integer local variable number 6 → SURVIVED
3. simpleSort : Replaced integer operation with first member → SURVIVED
4. simpleSort : Replaced integer operation by second member → SURVIVED
5. simpleSort : Replaced integer subtraction with addition → SURVIVED
6. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
7. simpleSort : Replaced integer subtraction with division → SURVIVED
8. simpleSort : Replaced integer subtraction with modulus → SURVIVED
9. simpleSort : Incremented (a++) integer array field → SURVIVED
10. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
11. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
12. simpleSort : Decremented (a--) integer array field → SURVIVED
13. simpleSort : Incremented (++a) integer array field → SURVIVED
14. simpleSort : Decremented (--a) integer local variable number 5 → SURVIVED
15. simpleSort : Decremented (--a) integer local variable number 5 → SURVIVED
16. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
17. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
18. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
19. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
20. simpleSort : Negated integer local variable number 9 → KILLED
21. simpleSort : Negated integer local variable number 9 → KILLED
22. simpleSort : Negated integer array field → KILLED
23. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
24. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
25. simpleSort : Incremented (++a) integer local variable number 6 → KILLED
26. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
27. simpleSort : Decremented (--a) integer array field → KILLED
                    zptr[j] = zptr[j - h];
938 17 1. simpleSort : Replaced integer subtraction with modulus → SURVIVED
2. simpleSort : Incremented (a++) integer local variable number 5 → SURVIVED
3. simpleSort : Incremented (a++) integer local variable number 6 → SURVIVED
4. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
5. simpleSort : Decremented (--a) integer local variable number 5 → SURVIVED
6. simpleSort : Replaced integer operation with first member → TIMED_OUT
7. simpleSort : Replaced integer operation by second member → TIMED_OUT
8. simpleSort : Replaced integer subtraction with division → TIMED_OUT
9. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
10. simpleSort : Replaced integer subtraction with addition → KILLED
11. simpleSort : Negated integer local variable number 9 → KILLED
12. simpleSort : Negated integer local variable number 6 → KILLED
13. simpleSort : Replaced integer subtraction with addition → KILLED
14. simpleSort : Replaced integer subtraction with multiplication → KILLED
15. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
16. simpleSort : Incremented (++a) integer local variable number 6 → KILLED
17. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
                    j = j - h;
939 44 1. simpleSort : Substituted 1 with 0 → SURVIVED
2. simpleSort : Replaced integer subtraction with addition → SURVIVED
3. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
4. simpleSort : Negated integer local variable number 9 → SURVIVED
5. simpleSort : Negated integer local variable number 1 → SURVIVED
6. simpleSort : Replaced integer operation with first member → SURVIVED
7. simpleSort : Replaced integer operation by second member → SURVIVED
8. simpleSort : Replaced integer subtraction with addition → SURVIVED
9. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
10. simpleSort : Replaced integer subtraction with division → SURVIVED
11. simpleSort : Substituted 1 with 0 → SURVIVED
12. simpleSort : Substituted 1 with -1 → SURVIVED
13. simpleSort : Substituted 1 with -1 → SURVIVED
14. simpleSort : Substituted 1 with 0 → SURVIVED
15. simpleSort : greater than to equal → SURVIVED
16. simpleSort : Incremented (a++) integer local variable number 1 → SURVIVED
17. simpleSort : Incremented (++a) integer local variable number 1 → SURVIVED
18. simpleSort : Incremented (++a) integer local variable number 6 → SURVIVED
19. simpleSort : Decremented (--a) integer local variable number 5 → SURVIVED
20. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
21. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
22. simpleSort : changed conditional boundary → KILLED
23. simpleSort : Replaced integer addition with subtraction → KILLED
24. simpleSort : negated conditional → KILLED
25. simpleSort : removed conditional - replaced comparison check with false → KILLED
26. simpleSort : Negated integer local variable number 6 → KILLED
27. simpleSort : Replaced integer operation with first member → KILLED
28. simpleSort : Replaced integer operation by second member → KILLED
29. simpleSort : Replaced integer addition with subtraction → KILLED
30. simpleSort : Replaced integer addition with multiplication → KILLED
31. simpleSort : Replaced integer addition with division → KILLED
32. simpleSort : Replaced integer addition with modulus → KILLED
33. simpleSort : Replaced integer subtraction with modulus → KILLED
34. simpleSort : Substituted 1 with 2 → KILLED
35. simpleSort : greater than to less than → KILLED
36. simpleSort : greater than to less or equal → KILLED
37. simpleSort : greater than to greater or equal → KILLED
38. simpleSort : greater than to not equal → KILLED
39. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
40. simpleSort : Decremented (a--) integer local variable number 5 → KILLED
41. simpleSort : Decremented (a--) integer local variable number 1 → KILLED
42. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
43. simpleSort : Decremented (--a) integer local variable number 1 → KILLED
44. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
                    if (j <= (lo + h - 1)) {
940
                        break;
941
                    }
942
                }
943 10 1. simpleSort : Incremented (a++) integer local variable number 5 → SURVIVED
2. simpleSort : Incremented (a++) integer local variable number 9 → SURVIVED
3. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
4. simpleSort : Decremented (a--) integer local variable number 9 → SURVIVED
5. simpleSort : Incremented (++a) integer local variable number 5 → SURVIVED
6. simpleSort : Incremented (++a) integer local variable number 9 → SURVIVED
7. simpleSort : Negated integer local variable number 9 → KILLED
8. simpleSort : Negated integer local variable number 8 → KILLED
9. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
10. simpleSort : Decremented (--a) integer local variable number 9 → KILLED
                zptr[j] = v;
944 2 1. simpleSort : Changed increment from 1 to -1 → SURVIVED
2. simpleSort : Removed increment 1 → SURVIVED
                i++;
945
946
                /* copy 3 */
947 19 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : negated conditional → SURVIVED
3. simpleSort : removed conditional - replaced comparison check with false → SURVIVED
4. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
5. simpleSort : Negated integer local variable number 7 → SURVIVED
6. simpleSort : Negated integer local variable number 2 → SURVIVED
7. simpleSort : Less or equal to less than → SURVIVED
8. simpleSort : Less or equal to greater than → SURVIVED
9. simpleSort : Less or equal to greater or equal → SURVIVED
10. simpleSort : Less or equal to equal → SURVIVED
11. simpleSort : Less or equal to not equal → SURVIVED
12. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
13. simpleSort : Incremented (a++) integer local variable number 2 → SURVIVED
14. simpleSort : Decremented (a--) integer local variable number 4 → SURVIVED
15. simpleSort : Decremented (a--) integer local variable number 2 → SURVIVED
16. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
17. simpleSort : Incremented (++a) integer local variable number 2 → SURVIVED
18. simpleSort : Decremented (--a) integer local variable number 4 → SURVIVED
19. simpleSort : Decremented (--a) integer local variable number 2 → SURVIVED
                if (i > hi) {
948
                    break;
949
                }
950 10 1. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
2. simpleSort : Incremented (a++) integer array field → SURVIVED
3. simpleSort : Decremented (a--) integer local variable number 4 → SURVIVED
4. simpleSort : Decremented (a--) integer array field → SURVIVED
5. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
6. simpleSort : Incremented (++a) integer array field → SURVIVED
7. simpleSort : Decremented (--a) integer local variable number 4 → SURVIVED
8. simpleSort : Negated integer local variable number 7 → KILLED
9. simpleSort : Negated integer array field → KILLED
10. simpleSort : Decremented (--a) integer array field → KILLED
                v = zptr[i];
951 5 1. simpleSort : Incremented (a++) integer local variable number 4 → SURVIVED
2. simpleSort : Decremented (a--) integer local variable number 4 → SURVIVED
3. simpleSort : Incremented (++a) integer local variable number 4 → SURVIVED
4. simpleSort : Decremented (--a) integer local variable number 4 → SURVIVED
5. simpleSort : Negated integer local variable number 7 → KILLED
                j = i;
952 60 1. simpleSort : Replaced integer subtraction with addition → SURVIVED
2. simpleSort : Replaced integer addition with subtraction → SURVIVED
3. simpleSort : Replaced integer addition with subtraction → SURVIVED
4. simpleSort : negated conditional → SURVIVED
5. simpleSort : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
6. simpleSort : removed conditional - replaced equality check with false → SURVIVED
7. simpleSort : removed conditional - replaced equality check with true → SURVIVED
8. simpleSort : Negated integer local variable number 6 → SURVIVED
9. simpleSort : Negated integer local variable number 3 → SURVIVED
10. simpleSort : Negated integer local variable number 3 → SURVIVED
11. simpleSort : Replaced integer operation with first member → SURVIVED
12. simpleSort : Replaced integer operation with first member → SURVIVED
13. simpleSort : Replaced integer operation with first member → SURVIVED
14. simpleSort : Replaced integer operation by second member → SURVIVED
15. simpleSort : Replaced integer operation by second member → SURVIVED
16. simpleSort : Replaced integer operation by second member → SURVIVED
17. simpleSort : Replaced integer subtraction with addition → SURVIVED
18. simpleSort : Replaced integer addition with subtraction → SURVIVED
19. simpleSort : Replaced integer addition with subtraction → SURVIVED
20. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
21. simpleSort : Replaced integer addition with multiplication → SURVIVED
22. simpleSort : Replaced integer addition with multiplication → SURVIVED
23. simpleSort : Replaced integer subtraction with division → SURVIVED
24. simpleSort : Replaced integer subtraction with modulus → SURVIVED
25. simpleSort : equal to less than → SURVIVED
26. simpleSort : equal to less or equal → SURVIVED
27. simpleSort : equal to greater than → SURVIVED
28. simpleSort : equal to greater or equal → SURVIVED
29. simpleSort : equal to not equal → SURVIVED
30. simpleSort : Incremented (a++) integer array field → SURVIVED
31. simpleSort : Incremented (a++) integer local variable number 3 → SURVIVED
32. simpleSort : Incremented (a++) integer local variable number 9 → SURVIVED
33. simpleSort : Incremented (a++) integer local variable number 3 → SURVIVED
34. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
35. simpleSort : Incremented (++a) integer local variable number 5 → SURVIVED
36. simpleSort : Incremented (++a) integer array field → SURVIVED
37. simpleSort : Incremented (++a) integer local variable number 3 → SURVIVED
38. simpleSort : Incremented (++a) integer local variable number 9 → SURVIVED
39. simpleSort : Incremented (++a) integer local variable number 3 → SURVIVED
40. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
41. simpleSort : Negated integer local variable number 9 → KILLED
42. simpleSort : Negated integer array field → KILLED
43. simpleSort : Negated integer local variable number 8 → KILLED
44. simpleSort : Replaced integer addition with division → KILLED
45. simpleSort : Replaced integer addition with division → KILLED
46. simpleSort : Replaced integer addition with modulus → KILLED
47. simpleSort : Replaced integer addition with modulus → KILLED
48. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
49. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
50. simpleSort : Decremented (a--) integer array field → KILLED
51. simpleSort : Decremented (a--) integer local variable number 3 → KILLED
52. simpleSort : Decremented (a--) integer local variable number 9 → KILLED
53. simpleSort : Decremented (a--) integer local variable number 3 → KILLED
54. simpleSort : Incremented (++a) integer local variable number 6 → KILLED
55. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
56. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
57. simpleSort : Decremented (--a) integer array field → KILLED
58. simpleSort : Decremented (--a) integer local variable number 3 → KILLED
59. simpleSort : Decremented (--a) integer local variable number 9 → KILLED
60. simpleSort : Decremented (--a) integer local variable number 3 → KILLED
                while (fullGtU(zptr[j - h] + d, v + d)) {
953 27 1. simpleSort : Replaced integer subtraction with addition → SURVIVED
2. simpleSort : Negated integer local variable number 6 → SURVIVED
3. simpleSort : Replaced integer operation with first member → SURVIVED
4. simpleSort : Replaced integer operation by second member → SURVIVED
5. simpleSort : Replaced integer subtraction with addition → SURVIVED
6. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
7. simpleSort : Replaced integer subtraction with division → SURVIVED
8. simpleSort : Replaced integer subtraction with modulus → SURVIVED
9. simpleSort : Incremented (a++) integer local variable number 6 → SURVIVED
10. simpleSort : Incremented (a++) integer array field → SURVIVED
11. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
12. simpleSort : Decremented (a--) integer array field → SURVIVED
13. simpleSort : Incremented (++a) integer local variable number 6 → SURVIVED
14. simpleSort : Incremented (++a) integer array field → SURVIVED
15. simpleSort : Decremented (--a) integer local variable number 5 → SURVIVED
16. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
17. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
18. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
19. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
20. simpleSort : Negated integer local variable number 9 → KILLED
21. simpleSort : Negated integer local variable number 9 → KILLED
22. simpleSort : Negated integer array field → KILLED
23. simpleSort : Decremented (a--) integer local variable number 5 → KILLED
24. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
25. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
26. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
27. simpleSort : Decremented (--a) integer array field → KILLED
                    zptr[j] = zptr[j - h];
954 17 1. simpleSort : Replaced integer subtraction with modulus → SURVIVED
2. simpleSort : Incremented (a++) integer local variable number 5 → SURVIVED
3. simpleSort : Incremented (a++) integer local variable number 6 → SURVIVED
4. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
5. simpleSort : Incremented (++a) integer local variable number 6 → SURVIVED
6. simpleSort : Replaced integer operation with first member → TIMED_OUT
7. simpleSort : Replaced integer operation by second member → TIMED_OUT
8. simpleSort : Replaced integer subtraction with division → TIMED_OUT
9. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
10. simpleSort : Replaced integer subtraction with addition → KILLED
11. simpleSort : Negated integer local variable number 9 → KILLED
12. simpleSort : Negated integer local variable number 6 → KILLED
13. simpleSort : Replaced integer subtraction with addition → KILLED
14. simpleSort : Replaced integer subtraction with multiplication → KILLED
15. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
16. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
17. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
                    j = j - h;
955 44 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : Substituted 1 with 0 → SURVIVED
3. simpleSort : Replaced integer subtraction with addition → SURVIVED
4. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
5. simpleSort : Negated integer local variable number 9 → SURVIVED
6. simpleSort : Negated integer local variable number 1 → SURVIVED
7. simpleSort : Replaced integer operation with first member → SURVIVED
8. simpleSort : Replaced integer operation by second member → SURVIVED
9. simpleSort : Replaced integer subtraction with addition → SURVIVED
10. simpleSort : Replaced integer subtraction with multiplication → SURVIVED
11. simpleSort : Replaced integer subtraction with division → SURVIVED
12. simpleSort : Substituted 1 with 0 → SURVIVED
13. simpleSort : Substituted 1 with -1 → SURVIVED
14. simpleSort : Substituted 1 with -1 → SURVIVED
15. simpleSort : Substituted 1 with 2 → SURVIVED
16. simpleSort : Substituted 1 with 0 → SURVIVED
17. simpleSort : greater than to greater or equal → SURVIVED
18. simpleSort : greater than to equal → SURVIVED
19. simpleSort : Incremented (a++) integer local variable number 1 → SURVIVED
20. simpleSort : Incremented (++a) integer local variable number 1 → SURVIVED
21. simpleSort : Incremented (++a) integer local variable number 6 → SURVIVED
22. simpleSort : Incremented (a++) integer local variable number 5 → TIMED_OUT
23. simpleSort : Incremented (++a) integer local variable number 5 → TIMED_OUT
24. simpleSort : Replaced integer addition with subtraction → KILLED
25. simpleSort : negated conditional → KILLED
26. simpleSort : removed conditional - replaced comparison check with false → KILLED
27. simpleSort : Negated integer local variable number 6 → KILLED
28. simpleSort : Replaced integer operation with first member → KILLED
29. simpleSort : Replaced integer operation by second member → KILLED
30. simpleSort : Replaced integer addition with subtraction → KILLED
31. simpleSort : Replaced integer addition with multiplication → KILLED
32. simpleSort : Replaced integer addition with division → KILLED
33. simpleSort : Replaced integer addition with modulus → KILLED
34. simpleSort : Replaced integer subtraction with modulus → KILLED
35. simpleSort : greater than to less than → KILLED
36. simpleSort : greater than to less or equal → KILLED
37. simpleSort : greater than to not equal → KILLED
38. simpleSort : Incremented (a++) integer local variable number 6 → KILLED
39. simpleSort : Decremented (a--) integer local variable number 5 → KILLED
40. simpleSort : Decremented (a--) integer local variable number 1 → KILLED
41. simpleSort : Decremented (a--) integer local variable number 6 → KILLED
42. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
43. simpleSort : Decremented (--a) integer local variable number 1 → KILLED
44. simpleSort : Decremented (--a) integer local variable number 6 → KILLED
                    if (j <= (lo + h - 1)) {
956
                        break;
957
                    }
958
                }
959 10 1. simpleSort : Incremented (a++) integer local variable number 5 → SURVIVED
2. simpleSort : Incremented (a++) integer local variable number 9 → SURVIVED
3. simpleSort : Decremented (a--) integer local variable number 5 → SURVIVED
4. simpleSort : Decremented (a--) integer local variable number 9 → SURVIVED
5. simpleSort : Incremented (++a) integer local variable number 5 → SURVIVED
6. simpleSort : Incremented (++a) integer local variable number 9 → SURVIVED
7. simpleSort : Negated integer local variable number 9 → KILLED
8. simpleSort : Negated integer local variable number 8 → KILLED
9. simpleSort : Decremented (--a) integer local variable number 5 → KILLED
10. simpleSort : Decremented (--a) integer local variable number 9 → KILLED
                zptr[j] = v;
960 2 1. simpleSort : Changed increment from 1 to -1 → SURVIVED
2. simpleSort : Removed increment 1 → SURVIVED
                i++;
961
962 27 1. simpleSort : changed conditional boundary → SURVIVED
2. simpleSort : negated conditional → SURVIVED
3. simpleSort : negated conditional → SURVIVED
4. simpleSort : removed conditional - replaced equality check with false → SURVIVED
5. simpleSort : removed conditional - replaced equality check with true → SURVIVED
6. simpleSort : removed conditional - replaced comparison check with false → SURVIVED
7. simpleSort : removed conditional - replaced comparison check with true → SURVIVED
8. simpleSort : Negated integer field workDone → SURVIVED
9. simpleSort : Negated integer field workLimit → SURVIVED
10. simpleSort : Less or equal to less than → SURVIVED
11. simpleSort : equal to less than → SURVIVED
12. simpleSort : Less or equal to greater than → SURVIVED
13. simpleSort : equal to less or equal → SURVIVED
14. simpleSort : Less or equal to greater or equal → SURVIVED
15. simpleSort : equal to greater than → SURVIVED
16. simpleSort : Less or equal to equal → SURVIVED
17. simpleSort : equal to greater or equal → SURVIVED
18. simpleSort : Less or equal to not equal → SURVIVED
19. simpleSort : equal to not equal → SURVIVED
20. simpleSort : Incremented (a++) integer field workDone → SURVIVED
21. simpleSort : Incremented (a++) integer field workLimit → SURVIVED
22. simpleSort : Decremented (a--) integer field workDone → SURVIVED
23. simpleSort : Decremented (a--) integer field workLimit → SURVIVED
24. simpleSort : Incremented (++a) integer field workDone → SURVIVED
25. simpleSort : Incremented (++a) integer field workLimit → SURVIVED
26. simpleSort : Decremented (--a) integer fieldworkDone → SURVIVED
27. simpleSort : Decremented (--a) integer fieldworkLimit → SURVIVED
                if (workDone > workLimit && firstAttempt) {
963
                    return;
964
                }
965
            }
966
        }
967
    }
968
969
    private void vswap(int p1, int p2, int n) {
970 5 1. vswap : Substituted 0 with 1 → NO_COVERAGE
2. vswap : Substituted 0 with 1 → NO_COVERAGE
3. vswap : Substituted 0 with -1 → NO_COVERAGE
4. vswap : Substituted 0 with 1 → NO_COVERAGE
5. vswap : Substituted 0 with -1 → NO_COVERAGE
        int temp = 0;
971 14 1. vswap : changed conditional boundary → NO_COVERAGE
2. vswap : negated conditional → NO_COVERAGE
3. vswap : removed conditional - replaced comparison check with false → NO_COVERAGE
4. vswap : removed conditional - replaced comparison check with true → NO_COVERAGE
5. vswap : Negated integer local variable number 3 → NO_COVERAGE
6. vswap : Less or equal to less than → NO_COVERAGE
7. vswap : Less or equal to greater than → NO_COVERAGE
8. vswap : Less or equal to greater or equal → NO_COVERAGE
9. vswap : Less or equal to equal → NO_COVERAGE
10. vswap : Less or equal to not equal → NO_COVERAGE
11. vswap : Incremented (a++) integer local variable number 3 → NO_COVERAGE
12. vswap : Decremented (a--) integer local variable number 3 → NO_COVERAGE
13. vswap : Incremented (++a) integer local variable number 3 → NO_COVERAGE
14. vswap : Decremented (--a) integer local variable number 3 → NO_COVERAGE
        while (n > 0) {
972 10 1. vswap : Negated integer local variable number 1 → NO_COVERAGE
2. vswap : Negated integer array field → NO_COVERAGE
3. vswap : Incremented (a++) integer local variable number 1 → NO_COVERAGE
4. vswap : Incremented (a++) integer array field → NO_COVERAGE
5. vswap : Decremented (a--) integer local variable number 1 → NO_COVERAGE
6. vswap : Decremented (a--) integer array field → NO_COVERAGE
7. vswap : Incremented (++a) integer local variable number 1 → NO_COVERAGE
8. vswap : Incremented (++a) integer array field → NO_COVERAGE
9. vswap : Decremented (--a) integer local variable number 1 → NO_COVERAGE
10. vswap : Decremented (--a) integer array field → NO_COVERAGE
            temp = zptr[p1];
973 15 1. vswap : Negated integer local variable number 1 → NO_COVERAGE
2. vswap : Negated integer local variable number 2 → NO_COVERAGE
3. vswap : Negated integer array field → NO_COVERAGE
4. vswap : Incremented (a++) integer local variable number 1 → NO_COVERAGE
5. vswap : Incremented (a++) integer local variable number 2 → NO_COVERAGE
6. vswap : Incremented (a++) integer array field → NO_COVERAGE
7. vswap : Decremented (a--) integer local variable number 1 → NO_COVERAGE
8. vswap : Decremented (a--) integer local variable number 2 → NO_COVERAGE
9. vswap : Decremented (a--) integer array field → NO_COVERAGE
10. vswap : Incremented (++a) integer local variable number 1 → NO_COVERAGE
11. vswap : Incremented (++a) integer local variable number 2 → NO_COVERAGE
12. vswap : Incremented (++a) integer array field → NO_COVERAGE
13. vswap : Decremented (--a) integer local variable number 1 → NO_COVERAGE
14. vswap : Decremented (--a) integer local variable number 2 → NO_COVERAGE
15. vswap : Decremented (--a) integer array field → NO_COVERAGE
            zptr[p1] = zptr[p2];
974 10 1. vswap : Negated integer local variable number 2 → NO_COVERAGE
2. vswap : Negated integer local variable number 4 → NO_COVERAGE
3. vswap : Incremented (a++) integer local variable number 2 → NO_COVERAGE
4. vswap : Incremented (a++) integer local variable number 4 → NO_COVERAGE
5. vswap : Decremented (a--) integer local variable number 2 → NO_COVERAGE
6. vswap : Decremented (a--) integer local variable number 4 → NO_COVERAGE
7. vswap : Incremented (++a) integer local variable number 2 → NO_COVERAGE
8. vswap : Incremented (++a) integer local variable number 4 → NO_COVERAGE
9. vswap : Decremented (--a) integer local variable number 2 → NO_COVERAGE
10. vswap : Decremented (--a) integer local variable number 4 → NO_COVERAGE
            zptr[p2] = temp;
975 2 1. vswap : Changed increment from 1 to -1 → NO_COVERAGE
2. vswap : Removed increment 1 → NO_COVERAGE
            p1++;
976 2 1. vswap : Changed increment from 1 to -1 → NO_COVERAGE
2. vswap : Removed increment 1 → NO_COVERAGE
            p2++;
977 2 1. vswap : Changed increment from -1 to 1 → NO_COVERAGE
2. vswap : Removed increment -1 → NO_COVERAGE
            n--;
978
        }
979
    }
980
981
    private char med3(char a, char b, char c) {
982
        char t;
983 19 1. med3 : changed conditional boundary → NO_COVERAGE
2. med3 : negated conditional → NO_COVERAGE
3. med3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. med3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. med3 : Negated integer local variable number 1 → NO_COVERAGE
6. med3 : Negated integer local variable number 2 → NO_COVERAGE
7. med3 : Less or equal to less than → NO_COVERAGE
8. med3 : Less or equal to greater than → NO_COVERAGE
9. med3 : Less or equal to greater or equal → NO_COVERAGE
10. med3 : Less or equal to equal → NO_COVERAGE
11. med3 : Less or equal to not equal → NO_COVERAGE
12. med3 : Incremented (a++) integer local variable number 1 → NO_COVERAGE
13. med3 : Incremented (a++) integer local variable number 2 → NO_COVERAGE
14. med3 : Decremented (a--) integer local variable number 1 → NO_COVERAGE
15. med3 : Decremented (a--) integer local variable number 2 → NO_COVERAGE
16. med3 : Incremented (++a) integer local variable number 1 → NO_COVERAGE
17. med3 : Incremented (++a) integer local variable number 2 → NO_COVERAGE
18. med3 : Decremented (--a) integer local variable number 1 → NO_COVERAGE
19. med3 : Decremented (--a) integer local variable number 2 → NO_COVERAGE
        if (a > b) {
984 5 1. med3 : Negated integer local variable number 1 → NO_COVERAGE
2. med3 : Incremented (a++) integer local variable number 1 → NO_COVERAGE
3. med3 : Decremented (a--) integer local variable number 1 → NO_COVERAGE
4. med3 : Incremented (++a) integer local variable number 1 → NO_COVERAGE
5. med3 : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            t = a;
985 5 1. med3 : Negated integer local variable number 2 → NO_COVERAGE
2. med3 : Incremented (a++) integer local variable number 2 → NO_COVERAGE
3. med3 : Decremented (a--) integer local variable number 2 → NO_COVERAGE
4. med3 : Incremented (++a) integer local variable number 2 → NO_COVERAGE
5. med3 : Decremented (--a) integer local variable number 2 → NO_COVERAGE
            a = b;
986 5 1. med3 : Negated integer local variable number 4 → NO_COVERAGE
2. med3 : Incremented (a++) integer local variable number 4 → NO_COVERAGE
3. med3 : Decremented (a--) integer local variable number 4 → NO_COVERAGE
4. med3 : Incremented (++a) integer local variable number 4 → NO_COVERAGE
5. med3 : Decremented (--a) integer local variable number 4 → NO_COVERAGE
            b = t;
987
        }
988 19 1. med3 : changed conditional boundary → NO_COVERAGE
2. med3 : negated conditional → NO_COVERAGE
3. med3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. med3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. med3 : Negated integer local variable number 2 → NO_COVERAGE
6. med3 : Negated integer local variable number 3 → NO_COVERAGE
7. med3 : Less or equal to less than → NO_COVERAGE
8. med3 : Less or equal to greater than → NO_COVERAGE
9. med3 : Less or equal to greater or equal → NO_COVERAGE
10. med3 : Less or equal to equal → NO_COVERAGE
11. med3 : Less or equal to not equal → NO_COVERAGE
12. med3 : Incremented (a++) integer local variable number 2 → NO_COVERAGE
13. med3 : Incremented (a++) integer local variable number 3 → NO_COVERAGE
14. med3 : Decremented (a--) integer local variable number 2 → NO_COVERAGE
15. med3 : Decremented (a--) integer local variable number 3 → NO_COVERAGE
16. med3 : Incremented (++a) integer local variable number 2 → NO_COVERAGE
17. med3 : Incremented (++a) integer local variable number 3 → NO_COVERAGE
18. med3 : Decremented (--a) integer local variable number 2 → NO_COVERAGE
19. med3 : Decremented (--a) integer local variable number 3 → NO_COVERAGE
        if (b > c) {
989 5 1. med3 : Negated integer local variable number 3 → NO_COVERAGE
2. med3 : Incremented (a++) integer local variable number 3 → NO_COVERAGE
3. med3 : Decremented (a--) integer local variable number 3 → NO_COVERAGE
4. med3 : Incremented (++a) integer local variable number 3 → NO_COVERAGE
5. med3 : Decremented (--a) integer local variable number 3 → NO_COVERAGE
            b = c;
990
        }
991 19 1. med3 : changed conditional boundary → NO_COVERAGE
2. med3 : negated conditional → NO_COVERAGE
3. med3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. med3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. med3 : Negated integer local variable number 1 → NO_COVERAGE
6. med3 : Negated integer local variable number 2 → NO_COVERAGE
7. med3 : Less or equal to less than → NO_COVERAGE
8. med3 : Less or equal to greater than → NO_COVERAGE
9. med3 : Less or equal to greater or equal → NO_COVERAGE
10. med3 : Less or equal to equal → NO_COVERAGE
11. med3 : Less or equal to not equal → NO_COVERAGE
12. med3 : Incremented (a++) integer local variable number 1 → NO_COVERAGE
13. med3 : Incremented (a++) integer local variable number 2 → NO_COVERAGE
14. med3 : Decremented (a--) integer local variable number 1 → NO_COVERAGE
15. med3 : Decremented (a--) integer local variable number 2 → NO_COVERAGE
16. med3 : Incremented (++a) integer local variable number 1 → NO_COVERAGE
17. med3 : Incremented (++a) integer local variable number 2 → NO_COVERAGE
18. med3 : Decremented (--a) integer local variable number 1 → NO_COVERAGE
19. med3 : Decremented (--a) integer local variable number 2 → NO_COVERAGE
        if (a > b) {
992 5 1. med3 : Negated integer local variable number 1 → NO_COVERAGE
2. med3 : Incremented (a++) integer local variable number 1 → NO_COVERAGE
3. med3 : Decremented (a--) integer local variable number 1 → NO_COVERAGE
4. med3 : Incremented (++a) integer local variable number 1 → NO_COVERAGE
5. med3 : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            b = a;
993
        }
994 7 1. med3 : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE
2. med3 : replaced char return with 0 for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::med3 → NO_COVERAGE
3. med3 : Negated integer local variable number 2 → NO_COVERAGE
4. med3 : Incremented (a++) integer local variable number 2 → NO_COVERAGE
5. med3 : Decremented (a--) integer local variable number 2 → NO_COVERAGE
6. med3 : Incremented (++a) integer local variable number 2 → NO_COVERAGE
7. med3 : Decremented (--a) integer local variable number 2 → NO_COVERAGE
        return b;
995
    }
996
997
    private static class StackElem {
998
        int ll;
999
        int hh;
1000
        int dd;
1001
    }
1002
1003
    private void qSort3(int loSt, int hiSt, int dSt, StackElem[] stack) {
1004
        int unLo, unHi, ltLo, gtHi, med, n, m;
1005
        int sp, lo, hi, d;
1006
1007 5 1. qSort3 : Substituted 0 with 1 → NO_COVERAGE
2. qSort3 : Substituted 0 with 1 → NO_COVERAGE
3. qSort3 : Substituted 0 with -1 → NO_COVERAGE
4. qSort3 : Substituted 0 with 1 → NO_COVERAGE
5. qSort3 : Substituted 0 with -1 → NO_COVERAGE
        sp = 0;
1008
1009 11 1. qSort3 : Removed assignment to member variable ll → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 1 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 1 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 1 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 1 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 1 → NO_COVERAGE
        stack[sp].ll = loSt;
1010 11 1. qSort3 : Removed assignment to member variable hh → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 2 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 2 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 2 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 2 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 2 → NO_COVERAGE
        stack[sp].hh = hiSt;
1011 11 1. qSort3 : Removed assignment to member variable dd → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 3 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 3 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 3 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 3 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 3 → NO_COVERAGE
        stack[sp].dd = dSt;
1012 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
        sp++;
1013
1014 14 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
6. qSort3 : Less or equal to less than → NO_COVERAGE
7. qSort3 : Less or equal to greater than → NO_COVERAGE
8. qSort3 : Less or equal to greater or equal → NO_COVERAGE
9. qSort3 : Less or equal to equal → NO_COVERAGE
10. qSort3 : Less or equal to not equal → NO_COVERAGE
11. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
12. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
13. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
14. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
        while (sp > 0) {
1015 21 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : Substituted 1000 with 1001 → NO_COVERAGE
3. qSort3 : negated conditional → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
5. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
6. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
7. qSort3 : Substituted 1000 with 1 → NO_COVERAGE
8. qSort3 : Substituted 1000 with 0 → NO_COVERAGE
9. qSort3 : Substituted 1000 with -1 → NO_COVERAGE
10. qSort3 : Substituted 1000 with -1000 → NO_COVERAGE
11. qSort3 : Substituted 1000 with 1001 → NO_COVERAGE
12. qSort3 : Substituted 1000 with 999 → NO_COVERAGE
13. qSort3 : Less than to less or equal → NO_COVERAGE
14. qSort3 : Less than to greater than → NO_COVERAGE
15. qSort3 : Less than to greater or equal → NO_COVERAGE
16. qSort3 : Less than to equal → NO_COVERAGE
17. qSort3 : Less than to not equal → NO_COVERAGE
18. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
19. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
20. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
21. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
            if (sp >= QSORT_STACK_SIZE) {
1016 1 1. qSort3 : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
                panic();
1017
            }
1018
1019 2 1. qSort3 : Changed increment from -1 to 1 → NO_COVERAGE
2. qSort3 : Removed increment -1 → NO_COVERAGE
            sp--;
1020 10 1. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
2. qSort3 : Negated integer field ll → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer field ll → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer field ll → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer field ll → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer fieldll → NO_COVERAGE
            lo = stack[sp].ll;
1021 10 1. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
2. qSort3 : Negated integer field hh → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer field hh → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer field hh → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer field hh → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer fieldhh → NO_COVERAGE
            hi = stack[sp].hh;
1022 10 1. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
2. qSort3 : Negated integer field dd → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer field dd → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer field dd → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer field dd → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer fielddd → NO_COVERAGE
            d = stack[sp].dd;
1023
1024 54 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : changed conditional boundary → NO_COVERAGE
3. qSort3 : Substituted 20 with 21 → NO_COVERAGE
4. qSort3 : Substituted 10 with 11 → NO_COVERAGE
5. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
6. qSort3 : negated conditional → NO_COVERAGE
7. qSort3 : negated conditional → NO_COVERAGE
8. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
9. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
10. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
11. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
12. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
13. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
14. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
15. qSort3 : Replaced integer operation with first member → NO_COVERAGE
16. qSort3 : Replaced integer operation by second member → NO_COVERAGE
17. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
18. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
19. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
20. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
21. qSort3 : Substituted 20 with 1 → NO_COVERAGE
22. qSort3 : Substituted 10 with 1 → NO_COVERAGE
23. qSort3 : Substituted 20 with 0 → NO_COVERAGE
24. qSort3 : Substituted 10 with 0 → NO_COVERAGE
25. qSort3 : Substituted 20 with -1 → NO_COVERAGE
26. qSort3 : Substituted 10 with -1 → NO_COVERAGE
27. qSort3 : Substituted 20 with -20 → NO_COVERAGE
28. qSort3 : Substituted 10 with -10 → NO_COVERAGE
29. qSort3 : Substituted 20 with 21 → NO_COVERAGE
30. qSort3 : Substituted 10 with 11 → NO_COVERAGE
31. qSort3 : Substituted 20 with 19 → NO_COVERAGE
32. qSort3 : Substituted 10 with 9 → NO_COVERAGE
33. qSort3 : Less than to less or equal → NO_COVERAGE
34. qSort3 : Less or equal to less than → NO_COVERAGE
35. qSort3 : Less than to greater than → NO_COVERAGE
36. qSort3 : Less or equal to greater than → NO_COVERAGE
37. qSort3 : Less than to greater or equal → NO_COVERAGE
38. qSort3 : Less or equal to greater or equal → NO_COVERAGE
39. qSort3 : Less than to equal → NO_COVERAGE
40. qSort3 : Less or equal to equal → NO_COVERAGE
41. qSort3 : Less than to not equal → NO_COVERAGE
42. qSort3 : Less or equal to not equal → NO_COVERAGE
43. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
44. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
45. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
46. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
47. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
48. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
49. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
50. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
51. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
52. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
53. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
54. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
            if (hi - lo < SMALL_THRESH || d > DEPTH_THRESH) {
1025 16 1. qSort3 : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::simpleSort → NO_COVERAGE
2. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
4. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
6. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
7. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
8. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
9. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
10. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
11. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
12. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
13. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
14. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
15. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
16. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
                simpleSort(lo, hi, d);
1026 27 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : negated conditional → NO_COVERAGE
4. qSort3 : removed conditional - replaced equality check with false → NO_COVERAGE
5. qSort3 : removed conditional - replaced equality check with true → NO_COVERAGE
6. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
7. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
8. qSort3 : Negated integer field workDone → NO_COVERAGE
9. qSort3 : Negated integer field workLimit → NO_COVERAGE
10. qSort3 : Less or equal to less than → NO_COVERAGE
11. qSort3 : equal to less than → NO_COVERAGE
12. qSort3 : Less or equal to greater than → NO_COVERAGE
13. qSort3 : equal to less or equal → NO_COVERAGE
14. qSort3 : Less or equal to greater or equal → NO_COVERAGE
15. qSort3 : equal to greater than → NO_COVERAGE
16. qSort3 : Less or equal to equal → NO_COVERAGE
17. qSort3 : equal to greater or equal → NO_COVERAGE
18. qSort3 : Less or equal to not equal → NO_COVERAGE
19. qSort3 : equal to not equal → NO_COVERAGE
20. qSort3 : Incremented (a++) integer field workDone → NO_COVERAGE
21. qSort3 : Incremented (a++) integer field workLimit → NO_COVERAGE
22. qSort3 : Decremented (a--) integer field workDone → NO_COVERAGE
23. qSort3 : Decremented (a--) integer field workLimit → NO_COVERAGE
24. qSort3 : Incremented (++a) integer field workDone → NO_COVERAGE
25. qSort3 : Incremented (++a) integer field workLimit → NO_COVERAGE
26. qSort3 : Decremented (--a) integer fieldworkDone → NO_COVERAGE
27. qSort3 : Decremented (--a) integer fieldworkLimit → NO_COVERAGE
                if (workDone > workLimit && firstAttempt) {
1027
                    return;
1028
                }
1029
                continue;
1030
            }
1031
1032 126 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Substituted 1 with 0 → NO_COVERAGE
3. qSort3 : Substituted 1 with 0 → NO_COVERAGE
4. qSort3 : Substituted 1 with 0 → NO_COVERAGE
5. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
6. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
7. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
8. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
9. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
10. qSort3 : Replaced Unsigned Shift Right with Shift Left → NO_COVERAGE
11. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
12. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
13. qSort3 : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::med3 → NO_COVERAGE
14. qSort3 : replaced call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::med3 with argument → NO_COVERAGE
15. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
16. qSort3 : Negated integer array field → NO_COVERAGE
17. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
18. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
19. qSort3 : Negated integer array field → NO_COVERAGE
20. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
21. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
22. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
23. qSort3 : Negated integer array field → NO_COVERAGE
24. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
25. qSort3 : Replaced integer operation with first member → NO_COVERAGE
26. qSort3 : Replaced integer operation with first member → NO_COVERAGE
27. qSort3 : Replaced integer operation with first member → NO_COVERAGE
28. qSort3 : Replaced integer operation with first member → NO_COVERAGE
29. qSort3 : Replaced integer operation with first member → NO_COVERAGE
30. qSort3 : Replaced integer operation with first member → NO_COVERAGE
31. qSort3 : Replaced integer operation with first member → NO_COVERAGE
32. qSort3 : Replaced integer operation by second member → NO_COVERAGE
33. qSort3 : Replaced integer operation by second member → NO_COVERAGE
34. qSort3 : Replaced integer operation by second member → NO_COVERAGE
35. qSort3 : Replaced integer operation by second member → NO_COVERAGE
36. qSort3 : Replaced integer operation by second member → NO_COVERAGE
37. qSort3 : Replaced integer operation by second member → NO_COVERAGE
38. qSort3 : Replaced integer operation by second member → NO_COVERAGE
39. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
40. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
41. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
42. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
43. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
44. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
45. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
46. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
47. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
48. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
49. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
50. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
51. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
52. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
53. qSort3 : Replaced integer addition with division → NO_COVERAGE
54. qSort3 : Replaced integer addition with division → NO_COVERAGE
55. qSort3 : Replaced integer addition with division → NO_COVERAGE
56. qSort3 : Replaced integer addition with division → NO_COVERAGE
57. qSort3 : Replaced integer addition with division → NO_COVERAGE
58. qSort3 : Replaced integer addition with division → NO_COVERAGE
59. qSort3 : Replaced integer addition with division → NO_COVERAGE
60. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
61. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
62. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
63. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
64. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
65. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
66. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
67. qSort3 : Substituted 1 with 0 → NO_COVERAGE
68. qSort3 : Substituted 1 with 0 → NO_COVERAGE
69. qSort3 : Substituted 1 with 0 → NO_COVERAGE
70. qSort3 : Substituted 1 with 0 → NO_COVERAGE
71. qSort3 : Substituted 1 with -1 → NO_COVERAGE
72. qSort3 : Substituted 1 with -1 → NO_COVERAGE
73. qSort3 : Substituted 1 with -1 → NO_COVERAGE
74. qSort3 : Substituted 1 with -1 → NO_COVERAGE
75. qSort3 : Substituted 1 with -1 → NO_COVERAGE
76. qSort3 : Substituted 1 with -1 → NO_COVERAGE
77. qSort3 : Substituted 1 with -1 → NO_COVERAGE
78. qSort3 : Substituted 1 with -1 → NO_COVERAGE
79. qSort3 : Substituted 1 with 2 → NO_COVERAGE
80. qSort3 : Substituted 1 with 2 → NO_COVERAGE
81. qSort3 : Substituted 1 with 2 → NO_COVERAGE
82. qSort3 : Substituted 1 with 2 → NO_COVERAGE
83. qSort3 : Substituted 1 with 0 → NO_COVERAGE
84. qSort3 : Substituted 1 with 0 → NO_COVERAGE
85. qSort3 : Substituted 1 with 0 → NO_COVERAGE
86. qSort3 : Substituted 1 with 0 → NO_COVERAGE
87. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
88. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
89. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
90. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
91. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
92. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
93. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
94. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
95. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
96. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
97. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
98. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
99. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
100. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
101. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
102. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
103. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
104. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
105. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
106. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
107. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
108. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
109. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
110. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
111. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
112. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
113. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
114. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
115. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
116. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
117. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
118. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
119. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
120. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
121. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
122. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
123. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
124. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
125. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
126. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
            med = med3(block[zptr[lo] + d + 1],
1033
                       block[zptr[hi            ] + d  + 1],
1034
                       block[zptr[(lo + hi) >>> 1] + d + 1]);
1035
1036 5 1. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
2. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
3. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
4. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
5. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
            unLo = ltLo = lo;
1037 5 1. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
2. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
3. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
4. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
5. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
            unHi = gtHi = hi;
1038
1039
            while (true) {
1040
                while (true) {
1041 19 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
7. qSort3 : Less or equal to less than → NO_COVERAGE
8. qSort3 : Less or equal to greater than → NO_COVERAGE
9. qSort3 : Less or equal to greater or equal → NO_COVERAGE
10. qSort3 : Less or equal to equal → NO_COVERAGE
11. qSort3 : Less or equal to not equal → NO_COVERAGE
12. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
13. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
14. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
15. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
16. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
17. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
18. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
19. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
                    if (unLo > unHi) {
1042
                        break;
1043
                    }
1044 47 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
3. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
4. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
5. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
6. qSort3 : Negated integer array field → NO_COVERAGE
7. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
8. qSort3 : Negated integer local variable number 9 → NO_COVERAGE
9. qSort3 : Replaced integer operation with first member → NO_COVERAGE
10. qSort3 : Replaced integer operation with first member → NO_COVERAGE
11. qSort3 : Replaced integer operation with first member → NO_COVERAGE
12. qSort3 : Replaced integer operation by second member → NO_COVERAGE
13. qSort3 : Replaced integer operation by second member → NO_COVERAGE
14. qSort3 : Replaced integer operation by second member → NO_COVERAGE
15. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
16. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
17. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
18. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
19. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
20. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
21. qSort3 : Replaced integer addition with division → NO_COVERAGE
22. qSort3 : Replaced integer addition with division → NO_COVERAGE
23. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
24. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
25. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
26. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
27. qSort3 : Substituted 1 with 0 → NO_COVERAGE
28. qSort3 : Substituted 1 with -1 → NO_COVERAGE
29. qSort3 : Substituted 1 with -1 → NO_COVERAGE
30. qSort3 : Substituted 1 with 2 → NO_COVERAGE
31. qSort3 : Substituted 1 with 0 → NO_COVERAGE
32. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
33. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
34. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
35. qSort3 : Incremented (a++) integer local variable number 9 → NO_COVERAGE
36. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
37. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
38. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
39. qSort3 : Decremented (a--) integer local variable number 9 → NO_COVERAGE
40. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
41. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
42. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
43. qSort3 : Incremented (++a) integer local variable number 9 → NO_COVERAGE
44. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
45. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
46. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
47. qSort3 : Decremented (--a) integer local variable number 9 → NO_COVERAGE
                    n = block[zptr[unLo] + d + 1] - med;
1045 13 1. qSort3 : negated conditional → NO_COVERAGE
2. qSort3 : removed conditional - replaced equality check with false → NO_COVERAGE
3. qSort3 : removed conditional - replaced equality check with true → NO_COVERAGE
4. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
5. qSort3 : not equal to less than → NO_COVERAGE
6. qSort3 : not equal to less or equal → NO_COVERAGE
7. qSort3 : not equal to greater than → NO_COVERAGE
8. qSort3 : not equal to greater or equal → NO_COVERAGE
9. qSort3 : not equal to equal → NO_COVERAGE
10. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
11. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
12. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
13. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
                    if (n == 0) {
1046 5 1. qSort3 : Substituted 0 with 1 → NO_COVERAGE
2. qSort3 : Substituted 0 with 1 → NO_COVERAGE
3. qSort3 : Substituted 0 with -1 → NO_COVERAGE
4. qSort3 : Substituted 0 with 1 → NO_COVERAGE
5. qSort3 : Substituted 0 with -1 → NO_COVERAGE
                        int temp = 0;
1047 10 1. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
2. qSort3 : Negated integer array field → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
                        temp = zptr[unLo];
1048 15 1. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
2. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
3. qSort3 : Negated integer array field → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
6. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
8. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
9. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
10. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
11. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
12. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
13. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
14. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
15. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
                        zptr[unLo] = zptr[ltLo];
1049 10 1. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
2. qSort3 : Negated integer local variable number 15 → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 16 → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 16 → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 16 → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 16 → NO_COVERAGE
                        zptr[ltLo] = temp;
1050 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
                        ltLo++;
1051 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
                        unLo++;
1052
                        continue;
1053
                    }
1054 14 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
6. qSort3 : Less or equal to less than → NO_COVERAGE
7. qSort3 : Less or equal to greater than → NO_COVERAGE
8. qSort3 : Less or equal to greater or equal → NO_COVERAGE
9. qSort3 : Less or equal to equal → NO_COVERAGE
10. qSort3 : Less or equal to not equal → NO_COVERAGE
11. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
12. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
13. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
14. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
                    if (n >  0) {
1055
                        break;
1056
                    }
1057 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
                    unLo++;
1058
                }
1059
                while (true) {
1060 19 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
7. qSort3 : Less or equal to less than → NO_COVERAGE
8. qSort3 : Less or equal to greater than → NO_COVERAGE
9. qSort3 : Less or equal to greater or equal → NO_COVERAGE
10. qSort3 : Less or equal to equal → NO_COVERAGE
11. qSort3 : Less or equal to not equal → NO_COVERAGE
12. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
13. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
14. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
15. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
16. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
17. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
18. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
19. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
                    if (unLo > unHi) {
1061
                        break;
1062
                    }
1063 47 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
3. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
4. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
5. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
6. qSort3 : Negated integer array field → NO_COVERAGE
7. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
8. qSort3 : Negated integer local variable number 9 → NO_COVERAGE
9. qSort3 : Replaced integer operation with first member → NO_COVERAGE
10. qSort3 : Replaced integer operation with first member → NO_COVERAGE
11. qSort3 : Replaced integer operation with first member → NO_COVERAGE
12. qSort3 : Replaced integer operation by second member → NO_COVERAGE
13. qSort3 : Replaced integer operation by second member → NO_COVERAGE
14. qSort3 : Replaced integer operation by second member → NO_COVERAGE
15. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
16. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
17. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
18. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
19. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
20. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
21. qSort3 : Replaced integer addition with division → NO_COVERAGE
22. qSort3 : Replaced integer addition with division → NO_COVERAGE
23. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
24. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
25. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
26. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
27. qSort3 : Substituted 1 with 0 → NO_COVERAGE
28. qSort3 : Substituted 1 with -1 → NO_COVERAGE
29. qSort3 : Substituted 1 with -1 → NO_COVERAGE
30. qSort3 : Substituted 1 with 2 → NO_COVERAGE
31. qSort3 : Substituted 1 with 0 → NO_COVERAGE
32. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
33. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
34. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
35. qSort3 : Incremented (a++) integer local variable number 9 → NO_COVERAGE
36. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
37. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
38. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
39. qSort3 : Decremented (a--) integer local variable number 9 → NO_COVERAGE
40. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
41. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
42. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
43. qSort3 : Incremented (++a) integer local variable number 9 → NO_COVERAGE
44. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
45. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
46. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
47. qSort3 : Decremented (--a) integer local variable number 9 → NO_COVERAGE
                    n = block[zptr[unHi] + d + 1] - med;
1064 13 1. qSort3 : negated conditional → NO_COVERAGE
2. qSort3 : removed conditional - replaced equality check with false → NO_COVERAGE
3. qSort3 : removed conditional - replaced equality check with true → NO_COVERAGE
4. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
5. qSort3 : not equal to less than → NO_COVERAGE
6. qSort3 : not equal to less or equal → NO_COVERAGE
7. qSort3 : not equal to greater than → NO_COVERAGE
8. qSort3 : not equal to greater or equal → NO_COVERAGE
9. qSort3 : not equal to equal → NO_COVERAGE
10. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
11. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
12. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
13. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
                    if (n == 0) {
1065 5 1. qSort3 : Substituted 0 with 1 → NO_COVERAGE
2. qSort3 : Substituted 0 with 1 → NO_COVERAGE
3. qSort3 : Substituted 0 with -1 → NO_COVERAGE
4. qSort3 : Substituted 0 with 1 → NO_COVERAGE
5. qSort3 : Substituted 0 with -1 → NO_COVERAGE
                        int temp = 0;
1066 10 1. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
2. qSort3 : Negated integer array field → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
                        temp = zptr[unHi];
1067 15 1. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
2. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
3. qSort3 : Negated integer array field → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
6. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
8. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
9. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
10. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
11. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
12. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
13. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
14. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
15. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
                        zptr[unHi] = zptr[gtHi];
1068 10 1. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
2. qSort3 : Negated integer local variable number 15 → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 16 → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 16 → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 16 → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 16 → NO_COVERAGE
                        zptr[gtHi] = temp;
1069 2 1. qSort3 : Changed increment from -1 to 1 → NO_COVERAGE
2. qSort3 : Removed increment -1 → NO_COVERAGE
                        gtHi--;
1070 2 1. qSort3 : Changed increment from -1 to 1 → NO_COVERAGE
2. qSort3 : Removed increment -1 → NO_COVERAGE
                        unHi--;
1071
                        continue;
1072
                    }
1073 14 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
6. qSort3 : greater or equal to less than → NO_COVERAGE
7. qSort3 : greater or equal to less or equal → NO_COVERAGE
8. qSort3 : greater or equal to greater than → NO_COVERAGE
9. qSort3 : greater or equal to equal → NO_COVERAGE
10. qSort3 : greater or equal to not equal → NO_COVERAGE
11. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
12. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
13. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
14. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
                    if (n <  0) {
1074
                        break;
1075
                    }
1076 2 1. qSort3 : Changed increment from -1 to 1 → NO_COVERAGE
2. qSort3 : Removed increment -1 → NO_COVERAGE
                    unHi--;
1077
                }
1078 19 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
7. qSort3 : Less or equal to less than → NO_COVERAGE
8. qSort3 : Less or equal to greater than → NO_COVERAGE
9. qSort3 : Less or equal to greater or equal → NO_COVERAGE
10. qSort3 : Less or equal to equal → NO_COVERAGE
11. qSort3 : Less or equal to not equal → NO_COVERAGE
12. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
13. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
14. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
15. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
16. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
17. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
18. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
19. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
                if (unLo > unHi) {
1079
                    break;
1080
                }
1081 5 1. qSort3 : Substituted 0 with 1 → NO_COVERAGE
2. qSort3 : Substituted 0 with 1 → NO_COVERAGE
3. qSort3 : Substituted 0 with -1 → NO_COVERAGE
4. qSort3 : Substituted 0 with 1 → NO_COVERAGE
5. qSort3 : Substituted 0 with -1 → NO_COVERAGE
                int temp = 0;
1082 10 1. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
2. qSort3 : Negated integer array field → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
                temp = zptr[unLo];
1083 15 1. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
2. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
3. qSort3 : Negated integer array field → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
6. qSort3 : Incremented (a++) integer array field → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
8. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
9. qSort3 : Decremented (a--) integer array field → NO_COVERAGE
10. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
11. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
12. qSort3 : Incremented (++a) integer array field → NO_COVERAGE
13. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
14. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
15. qSort3 : Decremented (--a) integer array field → NO_COVERAGE
                zptr[unLo] = zptr[unHi];
1084 10 1. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
2. qSort3 : Negated integer local variable number 15 → NO_COVERAGE
3. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 16 → NO_COVERAGE
5. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 16 → NO_COVERAGE
7. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 16 → NO_COVERAGE
9. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 16 → NO_COVERAGE
                zptr[unHi] = temp;
1085 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
                unLo++;
1086 2 1. qSort3 : Changed increment from -1 to 1 → NO_COVERAGE
2. qSort3 : Removed increment -1 → NO_COVERAGE
                unHi--;
1087
            }
1088
1089 19 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : negated conditional → NO_COVERAGE
3. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
4. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
5. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
7. qSort3 : greater or equal to less than → NO_COVERAGE
8. qSort3 : greater or equal to less or equal → NO_COVERAGE
9. qSort3 : greater or equal to greater than → NO_COVERAGE
10. qSort3 : greater or equal to equal → NO_COVERAGE
11. qSort3 : greater or equal to not equal → NO_COVERAGE
12. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
13. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
14. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
15. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
16. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
17. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
18. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
19. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
            if (gtHi < ltLo) {
1090 11 1. qSort3 : Removed assignment to member variable ll → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
                stack[sp].ll = lo;
1091 11 1. qSort3 : Removed assignment to member variable hh → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
                stack[sp].hh = hi;
1092 24 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
3. qSort3 : Removed assignment to member variable dd → NO_COVERAGE
4. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
5. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
6. qSort3 : Replaced integer operation with first member → NO_COVERAGE
7. qSort3 : Replaced integer operation by second member → NO_COVERAGE
8. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
9. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
10. qSort3 : Replaced integer addition with division → NO_COVERAGE
11. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
12. qSort3 : Substituted 1 with 0 → NO_COVERAGE
13. qSort3 : Substituted 1 with -1 → NO_COVERAGE
14. qSort3 : Substituted 1 with -1 → NO_COVERAGE
15. qSort3 : Substituted 1 with 2 → NO_COVERAGE
16. qSort3 : Substituted 1 with 0 → NO_COVERAGE
17. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
18. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
19. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
20. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
21. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
22. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
23. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
24. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
                stack[sp].dd = d + 1;
1093 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
                sp++;
1094
                continue;
1095
            }
1096
1097 77 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
3. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
4. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
5. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
6. qSort3 : negated conditional → NO_COVERAGE
7. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
8. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
9. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
10. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
11. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
12. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
13. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
14. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
15. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
16. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
17. qSort3 : Replaced integer operation with first member → NO_COVERAGE
18. qSort3 : Replaced integer operation with first member → NO_COVERAGE
19. qSort3 : Replaced integer operation with first member → NO_COVERAGE
20. qSort3 : Replaced integer operation with first member → NO_COVERAGE
21. qSort3 : Replaced integer operation by second member → NO_COVERAGE
22. qSort3 : Replaced integer operation by second member → NO_COVERAGE
23. qSort3 : Replaced integer operation by second member → NO_COVERAGE
24. qSort3 : Replaced integer operation by second member → NO_COVERAGE
25. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
26. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
27. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
28. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
29. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
30. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
31. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
32. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
33. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
34. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
35. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
36. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
37. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
38. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
39. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
40. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
41. qSort3 : greater or equal to less than → NO_COVERAGE
42. qSort3 : greater or equal to less or equal → NO_COVERAGE
43. qSort3 : greater or equal to greater than → NO_COVERAGE
44. qSort3 : greater or equal to equal → NO_COVERAGE
45. qSort3 : greater or equal to not equal → NO_COVERAGE
46. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
47. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
48. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
49. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
50. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
51. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
52. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
53. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
54. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
55. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
56. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
57. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
58. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
59. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
60. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
61. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
62. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
63. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
64. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
65. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
66. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
67. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
68. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
69. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
70. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
71. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
72. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
73. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
74. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
75. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
76. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
77. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
            n = ((ltLo - lo) < (unLo - ltLo)) ? (ltLo - lo) : (unLo - ltLo);
1098 28 1. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
2. qSort3 : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::vswap → NO_COVERAGE
3. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
4. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
5. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
7. qSort3 : Replaced integer operation with first member → NO_COVERAGE
8. qSort3 : Replaced integer operation by second member → NO_COVERAGE
9. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
10. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
11. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
12. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
13. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
14. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
15. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
16. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
17. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
18. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
19. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
20. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
21. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
22. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
23. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
24. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
25. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
26. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
27. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
28. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
            vswap(lo, unLo - n, n);
1099 77 1. qSort3 : changed conditional boundary → NO_COVERAGE
2. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
3. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
4. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
5. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
6. qSort3 : negated conditional → NO_COVERAGE
7. qSort3 : removed conditional - replaced comparison check with false → NO_COVERAGE
8. qSort3 : removed conditional - replaced comparison check with true → NO_COVERAGE
9. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
10. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
11. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
12. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
13. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
14. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
15. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
16. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
17. qSort3 : Replaced integer operation with first member → NO_COVERAGE
18. qSort3 : Replaced integer operation with first member → NO_COVERAGE
19. qSort3 : Replaced integer operation with first member → NO_COVERAGE
20. qSort3 : Replaced integer operation with first member → NO_COVERAGE
21. qSort3 : Replaced integer operation by second member → NO_COVERAGE
22. qSort3 : Replaced integer operation by second member → NO_COVERAGE
23. qSort3 : Replaced integer operation by second member → NO_COVERAGE
24. qSort3 : Replaced integer operation by second member → NO_COVERAGE
25. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
26. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
27. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
28. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
29. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
30. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
31. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
32. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
33. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
34. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
35. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
36. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
37. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
38. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
39. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
40. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
41. qSort3 : greater or equal to less than → NO_COVERAGE
42. qSort3 : greater or equal to less or equal → NO_COVERAGE
43. qSort3 : greater or equal to greater than → NO_COVERAGE
44. qSort3 : greater or equal to equal → NO_COVERAGE
45. qSort3 : greater or equal to not equal → NO_COVERAGE
46. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
47. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
48. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
49. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
50. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
51. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
52. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
53. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
54. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
55. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
56. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
57. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
58. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
59. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
60. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
61. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
62. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
63. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
64. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
65. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
66. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
67. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
68. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
69. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
70. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
71. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
72. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
73. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
74. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
75. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
76. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
77. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
            m = ((hi - gtHi) < (gtHi - unHi)) ? (hi - gtHi) : (gtHi - unHi);
1100 41 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
3. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
4. qSort3 : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::vswap → NO_COVERAGE
5. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
7. qSort3 : Negated integer local variable number 16 → NO_COVERAGE
8. qSort3 : Negated integer local variable number 16 → NO_COVERAGE
9. qSort3 : Replaced integer operation with first member → NO_COVERAGE
10. qSort3 : Replaced integer operation with first member → NO_COVERAGE
11. qSort3 : Replaced integer operation by second member → NO_COVERAGE
12. qSort3 : Replaced integer operation by second member → NO_COVERAGE
13. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
14. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
15. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
16. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
17. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
18. qSort3 : Replaced integer addition with division → NO_COVERAGE
19. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
20. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
21. qSort3 : Substituted 1 with 0 → NO_COVERAGE
22. qSort3 : Substituted 1 with -1 → NO_COVERAGE
23. qSort3 : Substituted 1 with -1 → NO_COVERAGE
24. qSort3 : Substituted 1 with 2 → NO_COVERAGE
25. qSort3 : Substituted 1 with 0 → NO_COVERAGE
26. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
27. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
28. qSort3 : Incremented (a++) integer local variable number 11 → NO_COVERAGE
29. qSort3 : Incremented (a++) integer local variable number 11 → NO_COVERAGE
30. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
31. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
32. qSort3 : Decremented (a--) integer local variable number 11 → NO_COVERAGE
33. qSort3 : Decremented (a--) integer local variable number 11 → NO_COVERAGE
34. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
35. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
36. qSort3 : Incremented (++a) integer local variable number 11 → NO_COVERAGE
37. qSort3 : Incremented (++a) integer local variable number 11 → NO_COVERAGE
38. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
39. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
40. qSort3 : Decremented (--a) integer local variable number 11 → NO_COVERAGE
41. qSort3 : Decremented (--a) integer local variable number 11 → NO_COVERAGE
            vswap(unLo, hi - m + 1, m);
1101
1102 42 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
3. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
4. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
5. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 11 → NO_COVERAGE
7. qSort3 : Negated integer local variable number 10 → NO_COVERAGE
8. qSort3 : Replaced integer operation with first member → NO_COVERAGE
9. qSort3 : Replaced integer operation with first member → NO_COVERAGE
10. qSort3 : Replaced integer operation with first member → NO_COVERAGE
11. qSort3 : Replaced integer operation by second member → NO_COVERAGE
12. qSort3 : Replaced integer operation by second member → NO_COVERAGE
13. qSort3 : Replaced integer operation by second member → NO_COVERAGE
14. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
15. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
16. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
17. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
18. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
19. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
20. qSort3 : Replaced integer addition with division → NO_COVERAGE
21. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
22. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
23. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
24. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
25. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
26. qSort3 : Substituted 1 with 0 → NO_COVERAGE
27. qSort3 : Substituted 1 with -1 → NO_COVERAGE
28. qSort3 : Substituted 1 with -1 → NO_COVERAGE
29. qSort3 : Substituted 1 with 2 → NO_COVERAGE
30. qSort3 : Substituted 1 with 0 → NO_COVERAGE
31. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
32. qSort3 : Incremented (a++) integer local variable number 5 → NO_COVERAGE
33. qSort3 : Incremented (a++) integer local variable number 7 → NO_COVERAGE
34. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
35. qSort3 : Decremented (a--) integer local variable number 5 → NO_COVERAGE
36. qSort3 : Decremented (a--) integer local variable number 7 → NO_COVERAGE
37. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
38. qSort3 : Incremented (++a) integer local variable number 5 → NO_COVERAGE
39. qSort3 : Incremented (++a) integer local variable number 7 → NO_COVERAGE
40. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
41. qSort3 : Decremented (--a) integer local variable number 5 → NO_COVERAGE
42. qSort3 : Decremented (--a) integer local variable number 7 → NO_COVERAGE
            n = lo + unLo - ltLo - 1;
1103 42 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
3. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
4. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
5. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
6. qSort3 : Negated integer local variable number 12 → NO_COVERAGE
7. qSort3 : Negated integer local variable number 13 → NO_COVERAGE
8. qSort3 : Replaced integer operation with first member → NO_COVERAGE
9. qSort3 : Replaced integer operation with first member → NO_COVERAGE
10. qSort3 : Replaced integer operation with first member → NO_COVERAGE
11. qSort3 : Replaced integer operation by second member → NO_COVERAGE
12. qSort3 : Replaced integer operation by second member → NO_COVERAGE
13. qSort3 : Replaced integer operation by second member → NO_COVERAGE
14. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
15. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
16. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
17. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
18. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
19. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
20. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
21. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
22. qSort3 : Replaced integer addition with division → NO_COVERAGE
23. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
24. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
25. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
26. qSort3 : Substituted 1 with 0 → NO_COVERAGE
27. qSort3 : Substituted 1 with -1 → NO_COVERAGE
28. qSort3 : Substituted 1 with -1 → NO_COVERAGE
29. qSort3 : Substituted 1 with 2 → NO_COVERAGE
30. qSort3 : Substituted 1 with 0 → NO_COVERAGE
31. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
32. qSort3 : Incremented (a++) integer local variable number 8 → NO_COVERAGE
33. qSort3 : Incremented (a++) integer local variable number 6 → NO_COVERAGE
34. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
35. qSort3 : Decremented (a--) integer local variable number 8 → NO_COVERAGE
36. qSort3 : Decremented (a--) integer local variable number 6 → NO_COVERAGE
37. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
38. qSort3 : Incremented (++a) integer local variable number 8 → NO_COVERAGE
39. qSort3 : Incremented (++a) integer local variable number 6 → NO_COVERAGE
40. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
41. qSort3 : Decremented (--a) integer local variable number 8 → NO_COVERAGE
42. qSort3 : Decremented (--a) integer local variable number 6 → NO_COVERAGE
            m = hi - (gtHi - unHi) + 1;
1104
1105 11 1. qSort3 : Removed assignment to member variable ll → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 6 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 13 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 13 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 13 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 13 → NO_COVERAGE
            stack[sp].ll = lo;
1106 11 1. qSort3 : Removed assignment to member variable hh → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
            stack[sp].hh = n;
1107 11 1. qSort3 : Removed assignment to member variable dd → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
            stack[sp].dd = d;
1108 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
            sp++;
1109
1110 24 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
3. qSort3 : Removed assignment to member variable ll → NO_COVERAGE
4. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
5. qSort3 : Negated integer local variable number 14 → NO_COVERAGE
6. qSort3 : Replaced integer operation with first member → NO_COVERAGE
7. qSort3 : Replaced integer operation by second member → NO_COVERAGE
8. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
9. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
10. qSort3 : Replaced integer addition with division → NO_COVERAGE
11. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
12. qSort3 : Substituted 1 with 0 → NO_COVERAGE
13. qSort3 : Substituted 1 with -1 → NO_COVERAGE
14. qSort3 : Substituted 1 with -1 → NO_COVERAGE
15. qSort3 : Substituted 1 with 2 → NO_COVERAGE
16. qSort3 : Substituted 1 with 0 → NO_COVERAGE
17. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
18. qSort3 : Incremented (a++) integer local variable number 10 → NO_COVERAGE
19. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
20. qSort3 : Decremented (a--) integer local variable number 10 → NO_COVERAGE
21. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
22. qSort3 : Incremented (++a) integer local variable number 10 → NO_COVERAGE
23. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
24. qSort3 : Decremented (--a) integer local variable number 10 → NO_COVERAGE
            stack[sp].ll = n + 1;
1111 24 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
3. qSort3 : Removed assignment to member variable hh → NO_COVERAGE
4. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
5. qSort3 : Negated integer local variable number 16 → NO_COVERAGE
6. qSort3 : Replaced integer operation with first member → NO_COVERAGE
7. qSort3 : Replaced integer operation by second member → NO_COVERAGE
8. qSort3 : Replaced integer subtraction with addition → NO_COVERAGE
9. qSort3 : Replaced integer subtraction with multiplication → NO_COVERAGE
10. qSort3 : Replaced integer subtraction with division → NO_COVERAGE
11. qSort3 : Replaced integer subtraction with modulus → NO_COVERAGE
12. qSort3 : Substituted 1 with 0 → NO_COVERAGE
13. qSort3 : Substituted 1 with -1 → NO_COVERAGE
14. qSort3 : Substituted 1 with -1 → NO_COVERAGE
15. qSort3 : Substituted 1 with 2 → NO_COVERAGE
16. qSort3 : Substituted 1 with 0 → NO_COVERAGE
17. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
18. qSort3 : Incremented (a++) integer local variable number 11 → NO_COVERAGE
19. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
20. qSort3 : Decremented (a--) integer local variable number 11 → NO_COVERAGE
21. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
22. qSort3 : Incremented (++a) integer local variable number 11 → NO_COVERAGE
23. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
24. qSort3 : Decremented (--a) integer local variable number 11 → NO_COVERAGE
            stack[sp].hh = m - 1;
1112 24 1. qSort3 : Substituted 1 with 0 → NO_COVERAGE
2. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
3. qSort3 : Removed assignment to member variable dd → NO_COVERAGE
4. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
5. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
6. qSort3 : Replaced integer operation with first member → NO_COVERAGE
7. qSort3 : Replaced integer operation by second member → NO_COVERAGE
8. qSort3 : Replaced integer addition with subtraction → NO_COVERAGE
9. qSort3 : Replaced integer addition with multiplication → NO_COVERAGE
10. qSort3 : Replaced integer addition with division → NO_COVERAGE
11. qSort3 : Replaced integer addition with modulus → NO_COVERAGE
12. qSort3 : Substituted 1 with 0 → NO_COVERAGE
13. qSort3 : Substituted 1 with -1 → NO_COVERAGE
14. qSort3 : Substituted 1 with -1 → NO_COVERAGE
15. qSort3 : Substituted 1 with 2 → NO_COVERAGE
16. qSort3 : Substituted 1 with 0 → NO_COVERAGE
17. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
18. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
19. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
20. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
21. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
22. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
23. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
24. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
            stack[sp].dd = d + 1;
1113 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
            sp++;
1114
1115 11 1. qSort3 : Removed assignment to member variable ll → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 16 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 11 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 11 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 11 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 11 → NO_COVERAGE
            stack[sp].ll = m;
1116 11 1. qSort3 : Removed assignment to member variable hh → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 7 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 14 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 14 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 14 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 14 → NO_COVERAGE
            stack[sp].hh = hi;
1117 11 1. qSort3 : Removed assignment to member variable dd → NO_COVERAGE
2. qSort3 : Negated integer local variable number 5 → NO_COVERAGE
3. qSort3 : Negated integer local variable number 8 → NO_COVERAGE
4. qSort3 : Incremented (a++) integer local variable number 12 → NO_COVERAGE
5. qSort3 : Incremented (a++) integer local variable number 15 → NO_COVERAGE
6. qSort3 : Decremented (a--) integer local variable number 12 → NO_COVERAGE
7. qSort3 : Decremented (a--) integer local variable number 15 → NO_COVERAGE
8. qSort3 : Incremented (++a) integer local variable number 12 → NO_COVERAGE
9. qSort3 : Incremented (++a) integer local variable number 15 → NO_COVERAGE
10. qSort3 : Decremented (--a) integer local variable number 12 → NO_COVERAGE
11. qSort3 : Decremented (--a) integer local variable number 15 → NO_COVERAGE
            stack[sp].dd = d;
1118 2 1. qSort3 : Changed increment from 1 to -1 → NO_COVERAGE
2. qSort3 : Removed increment 1 → NO_COVERAGE
            sp++;
1119
        }
1120
    }
1121
1122
    private void mainSort() {
1123
        int i, j, ss, sb;
1124 7 1. mainSort : Substituted 256 with 257 → SURVIVED
2. mainSort : Substituted 256 with 1 → SURVIVED
3. mainSort : Substituted 256 with 0 → SURVIVED
4. mainSort : Substituted 256 with 257 → SURVIVED
5. mainSort : Substituted 256 with 255 → SURVIVED
6. mainSort : Substituted 256 with -1 → KILLED
7. mainSort : Substituted 256 with -256 → KILLED
        int[] runningOrder = new int[256];
1125 7 1. mainSort : Substituted 256 with 257 → SURVIVED
2. mainSort : Substituted 256 with 1 → SURVIVED
3. mainSort : Substituted 256 with 0 → SURVIVED
4. mainSort : Substituted 256 with 257 → SURVIVED
5. mainSort : Substituted 256 with 255 → SURVIVED
6. mainSort : Substituted 256 with -1 → KILLED
7. mainSort : Substituted 256 with -256 → KILLED
        int[] copy = new int[256];
1126 7 1. mainSort : Substituted 256 with 257 → SURVIVED
2. mainSort : Substituted 256 with 1 → SURVIVED
3. mainSort : Substituted 256 with 0 → SURVIVED
4. mainSort : Substituted 256 with 257 → SURVIVED
5. mainSort : Substituted 256 with 255 → SURVIVED
6. mainSort : Substituted 256 with -1 → KILLED
7. mainSort : Substituted 256 with -256 → KILLED
        boolean[] bigDone = new boolean[256];
1127
        int c1, c2;
1128
        int numQSorted;
1129
1130
        /*
1131
          In the various block-sized structures, live data runs
1132
          from 0 to last+NUM_OVERSHOOT_BYTES inclusive.  First,
1133
          set up the overshoot area for block.
1134
        */
1135
1136
        //   if (verbosity >= 4) fprintf ( stderr, "   sort initialise ...\n" );
1137
1138 26 1. mainSort : changed conditional boundary → SURVIVED
2. mainSort : Substituted 0 with 1 → SURVIVED
3. mainSort : Substituted 20 with 21 → SURVIVED
4. mainSort : negated conditional → SURVIVED
5. mainSort : removed conditional - replaced comparison check with false → SURVIVED
6. mainSort : Substituted 0 with 1 → SURVIVED
7. mainSort : Substituted 20 with 1 → SURVIVED
8. mainSort : Substituted 20 with 0 → SURVIVED
9. mainSort : Substituted 0 with -1 → SURVIVED
10. mainSort : Substituted 20 with -1 → SURVIVED
11. mainSort : Substituted 20 with -20 → SURVIVED
12. mainSort : Substituted 0 with 1 → SURVIVED
13. mainSort : Substituted 20 with 21 → SURVIVED
14. mainSort : Substituted 0 with -1 → SURVIVED
15. mainSort : Substituted 20 with 19 → SURVIVED
16. mainSort : greater or equal to less than → SURVIVED
17. mainSort : greater or equal to less or equal → SURVIVED
18. mainSort : greater or equal to greater than → SURVIVED
19. mainSort : greater or equal to equal → SURVIVED
20. mainSort : greater or equal to not equal → SURVIVED
21. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
22. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
23. mainSort : Decremented (a--) integer local variable number 1 → TIMED_OUT
24. mainSort : Decremented (--a) integer local variable number 1 → TIMED_OUT
25. mainSort : removed conditional - replaced comparison check with true → KILLED
26. mainSort : Negated integer local variable number 4 → KILLED
        for (i = 0; i < NUM_OVERSHOOT_BYTES; i++) {
1139 74 1. mainSort : Substituted 2 with 3 → SURVIVED
2. mainSort : Substituted 1 with 0 → SURVIVED
3. mainSort : Substituted 1 with 0 → SURVIVED
4. mainSort : Replaced integer addition with subtraction → SURVIVED
5. mainSort : Replaced integer addition with subtraction → SURVIVED
6. mainSort : Replaced integer addition with subtraction → SURVIVED
7. mainSort : Replaced integer modulus with multiplication → SURVIVED
8. mainSort : Negated integer local variable number 4 → SURVIVED
9. mainSort : Negated integer field last → SURVIVED
10. mainSort : Replaced integer operation with first member → SURVIVED
11. mainSort : Replaced integer operation with first member → SURVIVED
12. mainSort : Replaced integer operation with first member → SURVIVED
13. mainSort : Replaced integer operation with first member → SURVIVED
14. mainSort : Replaced integer operation with first member → SURVIVED
15. mainSort : Replaced integer operation by second member → SURVIVED
16. mainSort : Replaced integer operation by second member → SURVIVED
17. mainSort : Replaced integer operation by second member → SURVIVED
18. mainSort : Replaced integer operation by second member → SURVIVED
19. mainSort : Replaced integer operation by second member → SURVIVED
20. mainSort : Replaced integer addition with subtraction → SURVIVED
21. mainSort : Replaced integer addition with subtraction → SURVIVED
22. mainSort : Replaced integer addition with subtraction → SURVIVED
23. mainSort : Replaced integer modulus with multiplication → SURVIVED
24. mainSort : Replaced integer addition with multiplication → SURVIVED
25. mainSort : Replaced integer addition with multiplication → SURVIVED
26. mainSort : Replaced integer addition with multiplication → SURVIVED
27. mainSort : Replaced integer modulus with division → SURVIVED
28. mainSort : Replaced integer addition with multiplication → SURVIVED
29. mainSort : Replaced integer addition with division → SURVIVED
30. mainSort : Replaced integer addition with division → SURVIVED
31. mainSort : Replaced integer modulus with addition → SURVIVED
32. mainSort : Replaced integer addition with division → SURVIVED
33. mainSort : Replaced integer addition with modulus → SURVIVED
34. mainSort : Replaced integer addition with modulus → SURVIVED
35. mainSort : Substituted 2 with 1 → SURVIVED
36. mainSort : Substituted 2 with 0 → SURVIVED
37. mainSort : Substituted 1 with 0 → SURVIVED
38. mainSort : Substituted 1 with 0 → SURVIVED
39. mainSort : Substituted 2 with -1 → SURVIVED
40. mainSort : Substituted 1 with -1 → SURVIVED
41. mainSort : Substituted 2 with -2 → SURVIVED
42. mainSort : Substituted 1 with -1 → SURVIVED
43. mainSort : Substituted 2 with 3 → SURVIVED
44. mainSort : Substituted 1 with 2 → SURVIVED
45. mainSort : Substituted 1 with 2 → SURVIVED
46. mainSort : Substituted 2 with 1 → SURVIVED
47. mainSort : Substituted 1 with 0 → SURVIVED
48. mainSort : Substituted 1 with 0 → SURVIVED
49. mainSort : Incremented (a++) integer field last → SURVIVED
50. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
51. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
52. mainSort : Incremented (a++) integer field last → SURVIVED
53. mainSort : Decremented (a--) integer field last → SURVIVED
54. mainSort : Decremented (a--) integer field last → SURVIVED
55. mainSort : Incremented (++a) integer field last → SURVIVED
56. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
57. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
58. mainSort : Incremented (++a) integer field last → SURVIVED
59. mainSort : Decremented (--a) integer fieldlast → SURVIVED
60. mainSort : Decremented (--a) integer fieldlast → SURVIVED
61. mainSort : Decremented (a--) integer local variable number 1 → TIMED_OUT
62. mainSort : Decremented (a--) integer local variable number 1 → TIMED_OUT
63. mainSort : Decremented (--a) integer local variable number 1 → TIMED_OUT
64. mainSort : Decremented (--a) integer local variable number 1 → TIMED_OUT
65. mainSort : Replaced integer addition with subtraction → KILLED
66. mainSort : Negated integer field last → KILLED
67. mainSort : Negated integer local variable number 4 → KILLED
68. mainSort : Replaced integer addition with subtraction → KILLED
69. mainSort : Replaced integer addition with division → KILLED
70. mainSort : Replaced integer addition with modulus → KILLED
71. mainSort : Replaced integer addition with modulus → KILLED
72. mainSort : Replaced integer modulus with subtraction → KILLED
73. mainSort : Substituted 1 with -1 → KILLED
74. mainSort : Substituted 1 with -1 → KILLED
            block[last + i + 2] = block[(i % (last + 1)) + 1];
1140
        }
1141 39 1. mainSort : changed conditional boundary → SURVIVED
2. mainSort : Substituted 0 with 1 → SURVIVED
3. mainSort : Substituted 20 with 21 → SURVIVED
4. mainSort : Replaced integer addition with subtraction → SURVIVED
5. mainSort : negated conditional → SURVIVED
6. mainSort : removed conditional - replaced comparison check with false → SURVIVED
7. mainSort : Negated integer field last → SURVIVED
8. mainSort : Replaced integer operation with first member → SURVIVED
9. mainSort : Replaced integer operation by second member → SURVIVED
10. mainSort : Replaced integer addition with subtraction → SURVIVED
11. mainSort : Replaced integer addition with multiplication → SURVIVED
12. mainSort : Replaced integer addition with division → SURVIVED
13. mainSort : Replaced integer addition with modulus → SURVIVED
14. mainSort : Substituted 0 with 1 → SURVIVED
15. mainSort : Substituted 20 with 1 → SURVIVED
16. mainSort : Substituted 20 with 0 → SURVIVED
17. mainSort : Substituted 20 with -1 → SURVIVED
18. mainSort : Substituted 20 with -20 → SURVIVED
19. mainSort : Substituted 0 with 1 → SURVIVED
20. mainSort : Substituted 20 with 21 → SURVIVED
21. mainSort : Substituted 20 with 19 → SURVIVED
22. mainSort : greater than to less than → SURVIVED
23. mainSort : greater than to less or equal → SURVIVED
24. mainSort : greater than to greater or equal → SURVIVED
25. mainSort : greater than to equal → SURVIVED
26. mainSort : greater than to not equal → SURVIVED
27. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
28. mainSort : Decremented (a--) integer field last → SURVIVED
29. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
30. mainSort : Decremented (--a) integer fieldlast → SURVIVED
31. mainSort : Changed increment from 1 to -1 → KILLED
32. mainSort : removed conditional - replaced comparison check with true → KILLED
33. mainSort : Negated integer local variable number 4 → KILLED
34. mainSort : Substituted 0 with -1 → KILLED
35. mainSort : Substituted 0 with -1 → KILLED
36. mainSort : Incremented (a++) integer field last → KILLED
37. mainSort : Decremented (a--) integer local variable number 1 → KILLED
38. mainSort : Incremented (++a) integer field last → KILLED
39. mainSort : Decremented (--a) integer local variable number 1 → KILLED
        for (i = 0; i <= last + NUM_OVERSHOOT_BYTES; i++) {
1142 10 1. mainSort : Substituted 0 with 1 → SURVIVED
2. mainSort : Substituted 0 with 1 → SURVIVED
3. mainSort : Substituted 0 with -1 → SURVIVED
4. mainSort : Substituted 0 with 1 → SURVIVED
5. mainSort : Substituted 0 with -1 → SURVIVED
6. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
7. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
8. mainSort : Decremented (a--) integer local variable number 1 → TIMED_OUT
9. mainSort : Negated integer local variable number 4 → KILLED
10. mainSort : Decremented (--a) integer local variable number 1 → KILLED
            quadrant[i] = 0;
1143
        }
1144
1145 23 1. mainSort : Substituted 0 with 1 → SURVIVED
2. mainSort : Substituted 1 with 0 → SURVIVED
3. mainSort : Replaced integer addition with subtraction → SURVIVED
4. mainSort : Replaced integer operation with first member → SURVIVED
5. mainSort : Replaced integer operation by second member → SURVIVED
6. mainSort : Replaced integer addition with subtraction → SURVIVED
7. mainSort : Replaced integer addition with multiplication → SURVIVED
8. mainSort : Replaced integer addition with division → SURVIVED
9. mainSort : Replaced integer addition with modulus → SURVIVED
10. mainSort : Substituted 0 with 1 → SURVIVED
11. mainSort : Substituted 1 with 0 → SURVIVED
12. mainSort : Substituted 1 with -1 → SURVIVED
13. mainSort : Substituted 1 with -1 → SURVIVED
14. mainSort : Substituted 0 with 1 → SURVIVED
15. mainSort : Substituted 1 with 2 → SURVIVED
16. mainSort : Substituted 1 with 0 → SURVIVED
17. mainSort : Incremented (a++) integer field last → SURVIVED
18. mainSort : Decremented (a--) integer field last → SURVIVED
19. mainSort : Incremented (++a) integer field last → SURVIVED
20. mainSort : Decremented (--a) integer fieldlast → SURVIVED
21. mainSort : Negated integer field last → KILLED
22. mainSort : Substituted 0 with -1 → KILLED
23. mainSort : Substituted 0 with -1 → KILLED
        block[0] = block[last + 1];
1146
1147 21 1. mainSort : changed conditional boundary → SURVIVED
2. mainSort : Substituted 4000 with 4001 → SURVIVED
3. mainSort : negated conditional → SURVIVED
4. mainSort : removed conditional - replaced comparison check with false → SURVIVED
5. mainSort : removed conditional - replaced comparison check with true → SURVIVED
6. mainSort : Negated integer field last → SURVIVED
7. mainSort : Substituted 4000 with 1 → SURVIVED
8. mainSort : Substituted 4000 with 0 → SURVIVED
9. mainSort : Substituted 4000 with -1 → SURVIVED
10. mainSort : Substituted 4000 with -4000 → SURVIVED
11. mainSort : Substituted 4000 with 4001 → SURVIVED
12. mainSort : Substituted 4000 with 3999 → SURVIVED
13. mainSort : greater or equal to less than → SURVIVED
14. mainSort : greater or equal to less or equal → SURVIVED
15. mainSort : greater or equal to greater than → SURVIVED
16. mainSort : greater or equal to equal → SURVIVED
17. mainSort : greater or equal to not equal → SURVIVED
18. mainSort : Incremented (a++) integer field last → SURVIVED
19. mainSort : Decremented (a--) integer field last → SURVIVED
20. mainSort : Incremented (++a) integer field last → SURVIVED
21. mainSort : Decremented (--a) integer fieldlast → SURVIVED
        if (last < 4000) {
1148
            /*
1149
              Use simpleSort(), since the full sorting mechanism
1150
              has quite a large constant overhead.
1151
            */
1152 25 1. mainSort : changed conditional boundary → SURVIVED
2. mainSort : Substituted 0 with 1 → SURVIVED
3. mainSort : negated conditional → SURVIVED
4. mainSort : removed conditional - replaced comparison check with false → SURVIVED
5. mainSort : Negated integer field last → SURVIVED
6. mainSort : Substituted 0 with 1 → SURVIVED
7. mainSort : Substituted 0 with 1 → SURVIVED
8. mainSort : greater than to less than → SURVIVED
9. mainSort : greater than to less or equal → SURVIVED
10. mainSort : greater than to greater or equal → SURVIVED
11. mainSort : greater than to equal → SURVIVED
12. mainSort : greater than to not equal → SURVIVED
13. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
14. mainSort : Decremented (a--) integer field last → SURVIVED
15. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
16. mainSort : Decremented (--a) integer fieldlast → SURVIVED
17. mainSort : Changed increment from 1 to -1 → KILLED
18. mainSort : removed conditional - replaced comparison check with true → KILLED
19. mainSort : Negated integer local variable number 4 → KILLED
20. mainSort : Substituted 0 with -1 → KILLED
21. mainSort : Substituted 0 with -1 → KILLED
22. mainSort : Incremented (a++) integer field last → KILLED
23. mainSort : Decremented (a--) integer local variable number 1 → KILLED
24. mainSort : Incremented (++a) integer field last → KILLED
25. mainSort : Decremented (--a) integer local variable number 1 → KILLED
            for (i = 0; i <= last; i++) {
1153 10 1. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
2. mainSort : Incremented (a++) integer local variable number 1 → SURVIVED
3. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
4. mainSort : Incremented (++a) integer local variable number 1 → SURVIVED
5. mainSort : Decremented (a--) integer local variable number 1 → TIMED_OUT
6. mainSort : Decremented (a--) integer local variable number 1 → TIMED_OUT
7. mainSort : Decremented (--a) integer local variable number 1 → TIMED_OUT
8. mainSort : Negated integer local variable number 4 → KILLED
9. mainSort : Negated integer local variable number 4 → KILLED
10. mainSort : Decremented (--a) integer local variable number 1 → KILLED
                zptr[i] = i;
1154
            }
1155 6 1. mainSort : Substituted 0 with 1 → SURVIVED
2. mainSort : Removed assignment to member variable firstAttempt → SURVIVED
3. mainSort : Substituted 0 with 1 → SURVIVED
4. mainSort : Substituted 0 with -1 → SURVIVED
5. mainSort : Substituted 0 with 1 → SURVIVED
6. mainSort : Substituted 0 with -1 → SURVIVED
            firstAttempt = false;
1156 7 1. mainSort : Substituted 0 with 1 → SURVIVED
2. mainSort : Removed assignment to member variable workLimit → SURVIVED
3. mainSort : Removed assignment to member variable workDone → SURVIVED
4. mainSort : Substituted 0 with 1 → SURVIVED
5. mainSort : Substituted 0 with -1 → SURVIVED
6. mainSort : Substituted 0 with 1 → SURVIVED
7. mainSort : Substituted 0 with -1 → SURVIVED
            workDone = workLimit = 0;
1157 16 1. mainSort : Substituted 0 with 1 → SURVIVED
2. mainSort : Substituted 0 with 1 → SURVIVED
3. mainSort : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::simpleSort → SURVIVED
4. mainSort : Negated integer field last → SURVIVED
5. mainSort : Substituted 0 with 1 → SURVIVED
6. mainSort : Substituted 0 with 1 → SURVIVED
7. mainSort : Substituted 0 with -1 → SURVIVED
8. mainSort : Substituted 0 with 1 → SURVIVED
9. mainSort : Substituted 0 with 1 → SURVIVED
10. mainSort : Substituted 0 with -1 → SURVIVED
11. mainSort : Incremented (a++) integer field last → SURVIVED
12. mainSort : Decremented (a--) integer field last → SURVIVED
13. mainSort : Incremented (++a) integer field last → SURVIVED
14. mainSort : Decremented (--a) integer fieldlast → SURVIVED
15. mainSort : Substituted 0 with -1 → KILLED
16. mainSort : Substituted 0 with -1 → KILLED
            simpleSort(0, last, 0);
1158
        } else {
1159 5 1. mainSort : Substituted 0 with 1 → NO_COVERAGE
2. mainSort : Substituted 0 with 1 → NO_COVERAGE
3. mainSort : Substituted 0 with -1 → NO_COVERAGE
4. mainSort : Substituted 0 with 1 → NO_COVERAGE
5. mainSort : Substituted 0 with -1 → NO_COVERAGE
            numQSorted = 0;
1160 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 255 with 256 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer local variable number 4 → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 255 with 1 → NO_COVERAGE
11. mainSort : Substituted 255 with 0 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : Substituted 255 with -1 → NO_COVERAGE
14. mainSort : Substituted 255 with -255 → NO_COVERAGE
15. mainSort : Substituted 0 with 1 → NO_COVERAGE
16. mainSort : Substituted 255 with 256 → NO_COVERAGE
17. mainSort : Substituted 0 with -1 → NO_COVERAGE
18. mainSort : Substituted 255 with 254 → NO_COVERAGE
19. mainSort : greater than to less than → NO_COVERAGE
20. mainSort : greater than to less or equal → NO_COVERAGE
21. mainSort : greater than to greater or equal → NO_COVERAGE
22. mainSort : greater than to equal → NO_COVERAGE
23. mainSort : greater than to not equal → NO_COVERAGE
24. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
25. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            for (i = 0; i <= 255; i++) {
1161 10 1. mainSort : Substituted 0 with 1 → NO_COVERAGE
2. mainSort : Negated integer local variable number 4 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 0 with -1 → NO_COVERAGE
5. mainSort : Substituted 0 with 1 → NO_COVERAGE
6. mainSort : Substituted 0 with -1 → NO_COVERAGE
7. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
8. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
9. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
10. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                bigDone[i] = false;
1162
            }
1163
1164 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 65536 with 65537 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer local variable number 4 → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 65536 with 1 → NO_COVERAGE
11. mainSort : Substituted 65536 with 0 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : Substituted 65536 with -1 → NO_COVERAGE
14. mainSort : Substituted 65536 with -65536 → NO_COVERAGE
15. mainSort : Substituted 0 with 1 → NO_COVERAGE
16. mainSort : Substituted 65536 with 65537 → NO_COVERAGE
17. mainSort : Substituted 0 with -1 → NO_COVERAGE
18. mainSort : Substituted 65536 with 65535 → NO_COVERAGE
19. mainSort : greater than to less than → NO_COVERAGE
20. mainSort : greater than to less or equal → NO_COVERAGE
21. mainSort : greater than to greater or equal → NO_COVERAGE
22. mainSort : greater than to equal → NO_COVERAGE
23. mainSort : greater than to not equal → NO_COVERAGE
24. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
25. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            for (i = 0; i <= 65536; i++) {
1165 10 1. mainSort : Substituted 0 with 1 → NO_COVERAGE
2. mainSort : Negated integer local variable number 4 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 0 with -1 → NO_COVERAGE
5. mainSort : Substituted 0 with 1 → NO_COVERAGE
6. mainSort : Substituted 0 with -1 → NO_COVERAGE
7. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
8. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
9. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
10. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                ftab[i] = 0;
1166
            }
1167
1168 5 1. mainSort : Substituted 0 with 1 → NO_COVERAGE
2. mainSort : Substituted 0 with 1 → NO_COVERAGE
3. mainSort : Substituted 0 with -1 → NO_COVERAGE
4. mainSort : Substituted 0 with 1 → NO_COVERAGE
5. mainSort : Substituted 0 with -1 → NO_COVERAGE
            c1 = block[0];
1169 25 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : negated conditional → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
7. mainSort : Negated integer local variable number 4 → NO_COVERAGE
8. mainSort : Negated integer field last → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 0 with -1 → NO_COVERAGE
11. mainSort : Substituted 0 with 1 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : greater than to less than → NO_COVERAGE
14. mainSort : greater than to less or equal → NO_COVERAGE
15. mainSort : greater than to greater or equal → NO_COVERAGE
16. mainSort : greater than to equal → NO_COVERAGE
17. mainSort : greater than to not equal → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
19. mainSort : Incremented (a++) integer field last → NO_COVERAGE
20. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
21. mainSort : Decremented (a--) integer field last → NO_COVERAGE
22. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
23. mainSort : Incremented (++a) integer field last → NO_COVERAGE
24. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
25. mainSort : Decremented (--a) integer fieldlast → NO_COVERAGE
            for (i = 0; i <= last; i++) {
1170 18 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
3. mainSort : Negated integer local variable number 4 → NO_COVERAGE
4. mainSort : Replaced integer operation with first member → NO_COVERAGE
5. mainSort : Replaced integer operation by second member → NO_COVERAGE
6. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
7. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
8. mainSort : Replaced integer addition with division → NO_COVERAGE
9. mainSort : Replaced integer addition with modulus → NO_COVERAGE
10. mainSort : Substituted 1 with 0 → NO_COVERAGE
11. mainSort : Substituted 1 with -1 → NO_COVERAGE
12. mainSort : Substituted 1 with -1 → NO_COVERAGE
13. mainSort : Substituted 1 with 2 → NO_COVERAGE
14. mainSort : Substituted 1 with 0 → NO_COVERAGE
15. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
16. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
17. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
18. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                c2 = block[i + 1];
1171 43 1. mainSort : Substituted 8 with 9 → NO_COVERAGE
2. mainSort : Substituted 1 with 0 → NO_COVERAGE
3. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
6. mainSort : Negated integer local variable number 6 → NO_COVERAGE
7. mainSort : Negated integer local variable number 7 → NO_COVERAGE
8. mainSort : Negated integer array field → NO_COVERAGE
9. mainSort : Replaced integer operation with first member → NO_COVERAGE
10. mainSort : Replaced integer operation with first member → NO_COVERAGE
11. mainSort : Replaced integer operation by second member → NO_COVERAGE
12. mainSort : Replaced integer operation by second member → NO_COVERAGE
13. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
14. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
15. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
16. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
17. mainSort : Replaced integer addition with division → NO_COVERAGE
18. mainSort : Replaced integer addition with division → NO_COVERAGE
19. mainSort : Replaced integer addition with modulus → NO_COVERAGE
20. mainSort : Replaced integer addition with modulus → NO_COVERAGE
21. mainSort : Substituted 8 with 1 → NO_COVERAGE
22. mainSort : Substituted 8 with 0 → NO_COVERAGE
23. mainSort : Substituted 1 with 0 → NO_COVERAGE
24. mainSort : Substituted 8 with -1 → NO_COVERAGE
25. mainSort : Substituted 1 with -1 → NO_COVERAGE
26. mainSort : Substituted 8 with -8 → NO_COVERAGE
27. mainSort : Substituted 1 with -1 → NO_COVERAGE
28. mainSort : Substituted 8 with 9 → NO_COVERAGE
29. mainSort : Substituted 1 with 2 → NO_COVERAGE
30. mainSort : Substituted 8 with 7 → NO_COVERAGE
31. mainSort : Substituted 1 with 0 → NO_COVERAGE
32. mainSort : Incremented (a++) integer local variable number 8 → NO_COVERAGE
33. mainSort : Incremented (a++) integer local variable number 9 → NO_COVERAGE
34. mainSort : Incremented (a++) integer array field → NO_COVERAGE
35. mainSort : Decremented (a--) integer local variable number 8 → NO_COVERAGE
36. mainSort : Decremented (a--) integer local variable number 9 → NO_COVERAGE
37. mainSort : Decremented (a--) integer array field → NO_COVERAGE
38. mainSort : Incremented (++a) integer local variable number 8 → NO_COVERAGE
39. mainSort : Incremented (++a) integer local variable number 9 → NO_COVERAGE
40. mainSort : Incremented (++a) integer array field → NO_COVERAGE
41. mainSort : Decremented (--a) integer local variable number 8 → NO_COVERAGE
42. mainSort : Decremented (--a) integer local variable number 9 → NO_COVERAGE
43. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                ftab[(c1 << 8) + c2]++;
1172 5 1. mainSort : Negated integer local variable number 7 → NO_COVERAGE
2. mainSort : Incremented (a++) integer local variable number 9 → NO_COVERAGE
3. mainSort : Decremented (a--) integer local variable number 9 → NO_COVERAGE
4. mainSort : Incremented (++a) integer local variable number 9 → NO_COVERAGE
5. mainSort : Decremented (--a) integer local variable number 9 → NO_COVERAGE
                c1 = c2;
1173
            }
1174
1175 28 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 1 with 0 → NO_COVERAGE
4. mainSort : Substituted 65536 with 65537 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer local variable number 4 → NO_COVERAGE
9. mainSort : Substituted 65536 with 1 → NO_COVERAGE
10. mainSort : Substituted 1 with 0 → NO_COVERAGE
11. mainSort : Substituted 65536 with 0 → NO_COVERAGE
12. mainSort : Substituted 1 with -1 → NO_COVERAGE
13. mainSort : Substituted 65536 with -1 → NO_COVERAGE
14. mainSort : Substituted 1 with -1 → NO_COVERAGE
15. mainSort : Substituted 65536 with -65536 → NO_COVERAGE
16. mainSort : Substituted 1 with 2 → NO_COVERAGE
17. mainSort : Substituted 65536 with 65537 → NO_COVERAGE
18. mainSort : Substituted 1 with 0 → NO_COVERAGE
19. mainSort : Substituted 65536 with 65535 → NO_COVERAGE
20. mainSort : greater than to less than → NO_COVERAGE
21. mainSort : greater than to less or equal → NO_COVERAGE
22. mainSort : greater than to greater or equal → NO_COVERAGE
23. mainSort : greater than to equal → NO_COVERAGE
24. mainSort : greater than to not equal → NO_COVERAGE
25. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
26. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
27. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
28. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            for (i = 1; i <= 65536; i++) {
1176 40 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
3. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
4. mainSort : Negated integer local variable number 4 → NO_COVERAGE
5. mainSort : Negated integer array field → NO_COVERAGE
6. mainSort : Negated integer local variable number 4 → NO_COVERAGE
7. mainSort : Negated integer array field → NO_COVERAGE
8. mainSort : Replaced integer operation with first member → NO_COVERAGE
9. mainSort : Replaced integer operation with first member → NO_COVERAGE
10. mainSort : Replaced integer operation by second member → NO_COVERAGE
11. mainSort : Replaced integer operation by second member → NO_COVERAGE
12. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
13. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
14. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
15. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
16. mainSort : Replaced integer subtraction with division → NO_COVERAGE
17. mainSort : Replaced integer addition with division → NO_COVERAGE
18. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
19. mainSort : Replaced integer addition with modulus → NO_COVERAGE
20. mainSort : Substituted 1 with 0 → NO_COVERAGE
21. mainSort : Substituted 1 with -1 → NO_COVERAGE
22. mainSort : Substituted 1 with -1 → NO_COVERAGE
23. mainSort : Substituted 1 with 2 → NO_COVERAGE
24. mainSort : Substituted 1 with 0 → NO_COVERAGE
25. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
26. mainSort : Incremented (a++) integer array field → NO_COVERAGE
27. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
28. mainSort : Incremented (a++) integer array field → NO_COVERAGE
29. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
30. mainSort : Decremented (a--) integer array field → NO_COVERAGE
31. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
32. mainSort : Decremented (a--) integer array field → NO_COVERAGE
33. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
34. mainSort : Incremented (++a) integer array field → NO_COVERAGE
35. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
36. mainSort : Incremented (++a) integer array field → NO_COVERAGE
37. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
38. mainSort : Decremented (--a) integer array field → NO_COVERAGE
39. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
40. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                ftab[i] += ftab[i - 1];
1177
            }
1178
1179 6 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Substituted 1 with 0 → NO_COVERAGE
3. mainSort : Substituted 1 with -1 → NO_COVERAGE
4. mainSort : Substituted 1 with -1 → NO_COVERAGE
5. mainSort : Substituted 1 with 2 → NO_COVERAGE
6. mainSort : Substituted 1 with 0 → NO_COVERAGE
            c1 = block[1];
1180 25 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : negated conditional → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
7. mainSort : Negated integer local variable number 4 → NO_COVERAGE
8. mainSort : Negated integer field last → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 0 with -1 → NO_COVERAGE
11. mainSort : Substituted 0 with 1 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : greater or equal to less than → NO_COVERAGE
14. mainSort : greater or equal to less or equal → NO_COVERAGE
15. mainSort : greater or equal to greater than → NO_COVERAGE
16. mainSort : greater or equal to equal → NO_COVERAGE
17. mainSort : greater or equal to not equal → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
19. mainSort : Incremented (a++) integer field last → NO_COVERAGE
20. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
21. mainSort : Decremented (a--) integer field last → NO_COVERAGE
22. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
23. mainSort : Incremented (++a) integer field last → NO_COVERAGE
24. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
25. mainSort : Decremented (--a) integer fieldlast → NO_COVERAGE
            for (i = 0; i < last; i++) {
1181 19 1. mainSort : Substituted 2 with 3 → NO_COVERAGE
2. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
3. mainSort : Negated integer local variable number 4 → NO_COVERAGE
4. mainSort : Replaced integer operation with first member → NO_COVERAGE
5. mainSort : Replaced integer operation by second member → NO_COVERAGE
6. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
7. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
8. mainSort : Replaced integer addition with division → NO_COVERAGE
9. mainSort : Replaced integer addition with modulus → NO_COVERAGE
10. mainSort : Substituted 2 with 1 → NO_COVERAGE
11. mainSort : Substituted 2 with 0 → NO_COVERAGE
12. mainSort : Substituted 2 with -1 → NO_COVERAGE
13. mainSort : Substituted 2 with -2 → NO_COVERAGE
14. mainSort : Substituted 2 with 3 → NO_COVERAGE
15. mainSort : Substituted 2 with 1 → NO_COVERAGE
16. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
17. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
18. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
19. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                c2 = block[i + 2];
1182 25 1. mainSort : Substituted 8 with 9 → NO_COVERAGE
2. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
3. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
4. mainSort : Negated integer local variable number 6 → NO_COVERAGE
5. mainSort : Negated integer local variable number 7 → NO_COVERAGE
6. mainSort : Replaced integer operation with first member → NO_COVERAGE
7. mainSort : Replaced integer operation by second member → NO_COVERAGE
8. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
9. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
10. mainSort : Replaced integer addition with division → NO_COVERAGE
11. mainSort : Replaced integer addition with modulus → NO_COVERAGE
12. mainSort : Substituted 8 with 1 → NO_COVERAGE
13. mainSort : Substituted 8 with 0 → NO_COVERAGE
14. mainSort : Substituted 8 with -1 → NO_COVERAGE
15. mainSort : Substituted 8 with -8 → NO_COVERAGE
16. mainSort : Substituted 8 with 9 → NO_COVERAGE
17. mainSort : Substituted 8 with 7 → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 8 → NO_COVERAGE
19. mainSort : Incremented (a++) integer local variable number 9 → NO_COVERAGE
20. mainSort : Decremented (a--) integer local variable number 8 → NO_COVERAGE
21. mainSort : Decremented (a--) integer local variable number 9 → NO_COVERAGE
22. mainSort : Incremented (++a) integer local variable number 8 → NO_COVERAGE
23. mainSort : Incremented (++a) integer local variable number 9 → NO_COVERAGE
24. mainSort : Decremented (--a) integer local variable number 8 → NO_COVERAGE
25. mainSort : Decremented (--a) integer local variable number 9 → NO_COVERAGE
                j = (c1 << 8) + c2;
1183 5 1. mainSort : Negated integer local variable number 7 → NO_COVERAGE
2. mainSort : Incremented (a++) integer local variable number 9 → NO_COVERAGE
3. mainSort : Decremented (a--) integer local variable number 9 → NO_COVERAGE
4. mainSort : Incremented (++a) integer local variable number 9 → NO_COVERAGE
5. mainSort : Decremented (--a) integer local variable number 9 → NO_COVERAGE
                c1 = c2;
1184 23 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
3. mainSort : Negated integer local variable number 8 → NO_COVERAGE
4. mainSort : Negated integer array field → NO_COVERAGE
5. mainSort : Replaced integer operation with first member → NO_COVERAGE
6. mainSort : Replaced integer operation by second member → NO_COVERAGE
7. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
8. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
9. mainSort : Replaced integer subtraction with division → NO_COVERAGE
10. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
11. mainSort : Substituted 1 with 0 → NO_COVERAGE
12. mainSort : Substituted 1 with -1 → NO_COVERAGE
13. mainSort : Substituted 1 with -1 → NO_COVERAGE
14. mainSort : Substituted 1 with 2 → NO_COVERAGE
15. mainSort : Substituted 1 with 0 → NO_COVERAGE
16. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
17. mainSort : Incremented (a++) integer array field → NO_COVERAGE
18. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
19. mainSort : Decremented (a--) integer array field → NO_COVERAGE
20. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
21. mainSort : Incremented (++a) integer array field → NO_COVERAGE
22. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
23. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                ftab[j]--;
1185 15 1. mainSort : Negated integer local variable number 8 → NO_COVERAGE
2. mainSort : Negated integer array field → NO_COVERAGE
3. mainSort : Negated integer local variable number 4 → NO_COVERAGE
4. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
5. mainSort : Incremented (a++) integer array field → NO_COVERAGE
6. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
7. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
8. mainSort : Decremented (a--) integer array field → NO_COVERAGE
9. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
10. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
11. mainSort : Incremented (++a) integer array field → NO_COVERAGE
12. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
13. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
14. mainSort : Decremented (--a) integer array field → NO_COVERAGE
15. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                zptr[ftab[j]] = i;
1186
            }
1187
1188 39 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Substituted 8 with 9 → NO_COVERAGE
3. mainSort : Substituted 1 with 0 → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
6. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
7. mainSort : Negated integer field last → NO_COVERAGE
8. mainSort : Replaced integer operation with first member → NO_COVERAGE
9. mainSort : Replaced integer operation with first member → NO_COVERAGE
10. mainSort : Replaced integer operation by second member → NO_COVERAGE
11. mainSort : Replaced integer operation by second member → NO_COVERAGE
12. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
13. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
14. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
15. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
16. mainSort : Replaced integer addition with division → NO_COVERAGE
17. mainSort : Replaced integer addition with division → NO_COVERAGE
18. mainSort : Replaced integer addition with modulus → NO_COVERAGE
19. mainSort : Replaced integer addition with modulus → NO_COVERAGE
20. mainSort : Substituted 8 with 1 → NO_COVERAGE
21. mainSort : Substituted 1 with 0 → NO_COVERAGE
22. mainSort : Substituted 8 with 0 → NO_COVERAGE
23. mainSort : Substituted 1 with 0 → NO_COVERAGE
24. mainSort : Substituted 1 with -1 → NO_COVERAGE
25. mainSort : Substituted 8 with -1 → NO_COVERAGE
26. mainSort : Substituted 1 with -1 → NO_COVERAGE
27. mainSort : Substituted 1 with -1 → NO_COVERAGE
28. mainSort : Substituted 8 with -8 → NO_COVERAGE
29. mainSort : Substituted 1 with -1 → NO_COVERAGE
30. mainSort : Substituted 1 with 2 → NO_COVERAGE
31. mainSort : Substituted 8 with 9 → NO_COVERAGE
32. mainSort : Substituted 1 with 2 → NO_COVERAGE
33. mainSort : Substituted 1 with 0 → NO_COVERAGE
34. mainSort : Substituted 8 with 7 → NO_COVERAGE
35. mainSort : Substituted 1 with 0 → NO_COVERAGE
36. mainSort : Incremented (a++) integer field last → NO_COVERAGE
37. mainSort : Decremented (a--) integer field last → NO_COVERAGE
38. mainSort : Incremented (++a) integer field last → NO_COVERAGE
39. mainSort : Decremented (--a) integer fieldlast → NO_COVERAGE
            j = ((block[last + 1]) << 8) + (block[1]);
1189 23 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
3. mainSort : Negated integer local variable number 8 → NO_COVERAGE
4. mainSort : Negated integer array field → NO_COVERAGE
5. mainSort : Replaced integer operation with first member → NO_COVERAGE
6. mainSort : Replaced integer operation by second member → NO_COVERAGE
7. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
8. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
9. mainSort : Replaced integer subtraction with division → NO_COVERAGE
10. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
11. mainSort : Substituted 1 with 0 → NO_COVERAGE
12. mainSort : Substituted 1 with -1 → NO_COVERAGE
13. mainSort : Substituted 1 with -1 → NO_COVERAGE
14. mainSort : Substituted 1 with 2 → NO_COVERAGE
15. mainSort : Substituted 1 with 0 → NO_COVERAGE
16. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
17. mainSort : Incremented (a++) integer array field → NO_COVERAGE
18. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
19. mainSort : Decremented (a--) integer array field → NO_COVERAGE
20. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
21. mainSort : Incremented (++a) integer array field → NO_COVERAGE
22. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
23. mainSort : Decremented (--a) integer array field → NO_COVERAGE
            ftab[j]--;
1190 15 1. mainSort : Negated integer local variable number 8 → NO_COVERAGE
2. mainSort : Negated integer array field → NO_COVERAGE
3. mainSort : Negated integer field last → NO_COVERAGE
4. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
5. mainSort : Incremented (a++) integer array field → NO_COVERAGE
6. mainSort : Incremented (a++) integer field last → NO_COVERAGE
7. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
8. mainSort : Decremented (a--) integer array field → NO_COVERAGE
9. mainSort : Decremented (a--) integer field last → NO_COVERAGE
10. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
11. mainSort : Incremented (++a) integer array field → NO_COVERAGE
12. mainSort : Incremented (++a) integer field last → NO_COVERAGE
13. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
14. mainSort : Decremented (--a) integer array field → NO_COVERAGE
15. mainSort : Decremented (--a) integer fieldlast → NO_COVERAGE
            zptr[ftab[j]] = last;
1191
1192
            /*
1193
              Now ftab contains the first loc of every small bucket.
1194
              Calculate the running order, from smallest to largest
1195
              big bucket.
1196
            */
1197
1198 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 255 with 256 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer local variable number 4 → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 255 with 1 → NO_COVERAGE
11. mainSort : Substituted 255 with 0 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : Substituted 255 with -1 → NO_COVERAGE
14. mainSort : Substituted 255 with -255 → NO_COVERAGE
15. mainSort : Substituted 0 with 1 → NO_COVERAGE
16. mainSort : Substituted 255 with 256 → NO_COVERAGE
17. mainSort : Substituted 0 with -1 → NO_COVERAGE
18. mainSort : Substituted 255 with 254 → NO_COVERAGE
19. mainSort : greater than to less than → NO_COVERAGE
20. mainSort : greater than to less or equal → NO_COVERAGE
21. mainSort : greater than to greater or equal → NO_COVERAGE
22. mainSort : greater than to equal → NO_COVERAGE
23. mainSort : greater than to not equal → NO_COVERAGE
24. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
25. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            for (i = 0; i <= 255; i++) {
1199 10 1. mainSort : Negated integer local variable number 4 → NO_COVERAGE
2. mainSort : Negated integer local variable number 4 → NO_COVERAGE
3. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
4. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
5. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
6. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
7. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
8. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
9. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
10. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                runningOrder[i] = i;
1200
            }
1201
1202
            {
1203
                int vv;
1204 6 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Substituted 1 with 0 → NO_COVERAGE
3. mainSort : Substituted 1 with -1 → NO_COVERAGE
4. mainSort : Substituted 1 with -1 → NO_COVERAGE
5. mainSort : Substituted 1 with 2 → NO_COVERAGE
6. mainSort : Substituted 1 with 0 → NO_COVERAGE
                int h = 1;
1205
                do {
1206 32 1. mainSort : Substituted 3 with 4 → NO_COVERAGE
2. mainSort : Substituted 1 with 0 → NO_COVERAGE
3. mainSort : Replaced integer multiplication with division → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Negated integer local variable number 9 → NO_COVERAGE
6. mainSort : Replaced integer operation with first member → NO_COVERAGE
7. mainSort : Replaced integer operation with first member → NO_COVERAGE
8. mainSort : Replaced integer operation by second member → NO_COVERAGE
9. mainSort : Replaced integer operation by second member → NO_COVERAGE
10. mainSort : Replaced integer multiplication with division → NO_COVERAGE
11. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
12. mainSort : Replaced integer multiplication with modulus → NO_COVERAGE
13. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
14. mainSort : Replaced integer multiplication with addition → NO_COVERAGE
15. mainSort : Replaced integer addition with division → NO_COVERAGE
16. mainSort : Replaced integer multiplication with subtraction → NO_COVERAGE
17. mainSort : Replaced integer addition with modulus → NO_COVERAGE
18. mainSort : Substituted 3 with 1 → NO_COVERAGE
19. mainSort : Substituted 3 with 0 → NO_COVERAGE
20. mainSort : Substituted 1 with 0 → NO_COVERAGE
21. mainSort : Substituted 3 with -1 → NO_COVERAGE
22. mainSort : Substituted 1 with -1 → NO_COVERAGE
23. mainSort : Substituted 3 with -3 → NO_COVERAGE
24. mainSort : Substituted 1 with -1 → NO_COVERAGE
25. mainSort : Substituted 3 with 4 → NO_COVERAGE
26. mainSort : Substituted 1 with 2 → NO_COVERAGE
27. mainSort : Substituted 3 with 2 → NO_COVERAGE
28. mainSort : Substituted 1 with 0 → NO_COVERAGE
29. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
30. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
31. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
32. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                    h = 3 * h + 1;
1207
                }
1208 21 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Substituted 256 with 257 → NO_COVERAGE
3. mainSort : negated conditional → NO_COVERAGE
4. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
6. mainSort : Negated integer local variable number 9 → NO_COVERAGE
7. mainSort : Substituted 256 with 1 → NO_COVERAGE
8. mainSort : Substituted 256 with 0 → NO_COVERAGE
9. mainSort : Substituted 256 with -1 → NO_COVERAGE
10. mainSort : Substituted 256 with -256 → NO_COVERAGE
11. mainSort : Substituted 256 with 257 → NO_COVERAGE
12. mainSort : Substituted 256 with 255 → NO_COVERAGE
13. mainSort : Less or equal to less than → NO_COVERAGE
14. mainSort : Less or equal to greater than → NO_COVERAGE
15. mainSort : Less or equal to greater or equal → NO_COVERAGE
16. mainSort : Less or equal to equal → NO_COVERAGE
17. mainSort : Less or equal to not equal → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
19. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
20. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
21. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                while (h <= 256);
1209
                do {
1210 19 1. mainSort : Substituted 3 with 4 → NO_COVERAGE
2. mainSort : Replaced integer division with multiplication → NO_COVERAGE
3. mainSort : Negated integer local variable number 9 → NO_COVERAGE
4. mainSort : Replaced integer operation with first member → NO_COVERAGE
5. mainSort : Replaced integer operation by second member → NO_COVERAGE
6. mainSort : Replaced integer division with multiplication → NO_COVERAGE
7. mainSort : Replaced integer division with modulus → NO_COVERAGE
8. mainSort : Replaced integer division with addition → NO_COVERAGE
9. mainSort : Replaced integer division with subtraction → NO_COVERAGE
10. mainSort : Substituted 3 with 1 → NO_COVERAGE
11. mainSort : Substituted 3 with 0 → NO_COVERAGE
12. mainSort : Substituted 3 with -1 → NO_COVERAGE
13. mainSort : Substituted 3 with -3 → NO_COVERAGE
14. mainSort : Substituted 3 with 4 → NO_COVERAGE
15. mainSort : Substituted 3 with 2 → NO_COVERAGE
16. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
17. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
18. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
19. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                    h = h / 3;
1211 28 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 255 with 256 → NO_COVERAGE
4. mainSort : negated conditional → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
7. mainSort : Removed increment 1 → NO_COVERAGE
8. mainSort : Negated integer local variable number 9 → NO_COVERAGE
9. mainSort : Negated integer local variable number 4 → NO_COVERAGE
10. mainSort : Substituted 255 with 1 → NO_COVERAGE
11. mainSort : Substituted 255 with 0 → NO_COVERAGE
12. mainSort : Substituted 255 with -1 → NO_COVERAGE
13. mainSort : Substituted 255 with -255 → NO_COVERAGE
14. mainSort : Substituted 255 with 256 → NO_COVERAGE
15. mainSort : Substituted 255 with 254 → NO_COVERAGE
16. mainSort : greater than to less than → NO_COVERAGE
17. mainSort : greater than to less or equal → NO_COVERAGE
18. mainSort : greater than to greater or equal → NO_COVERAGE
19. mainSort : greater than to equal → NO_COVERAGE
20. mainSort : greater than to not equal → NO_COVERAGE
21. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
22. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
23. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
24. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
25. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
28. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                    for (i = h; i <= 255; i++) {
1212 10 1. mainSort : Negated integer local variable number 4 → NO_COVERAGE
2. mainSort : Negated integer array field → NO_COVERAGE
3. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
4. mainSort : Incremented (a++) integer array field → NO_COVERAGE
5. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
6. mainSort : Decremented (a--) integer array field → NO_COVERAGE
7. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
8. mainSort : Incremented (++a) integer array field → NO_COVERAGE
9. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
10. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        vv = runningOrder[i];
1213 5 1. mainSort : Negated integer local variable number 4 → NO_COVERAGE
2. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
3. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
4. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
5. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                        j = i;
1214 155 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Substituted 1 with 0 → NO_COVERAGE
3. mainSort : Substituted 8 with 9 → NO_COVERAGE
4. mainSort : Substituted 8 with 9 → NO_COVERAGE
5. mainSort : Substituted 1 with 0 → NO_COVERAGE
6. mainSort : Substituted 8 with 9 → NO_COVERAGE
7. mainSort : Substituted 8 with 9 → NO_COVERAGE
8. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
9. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
10. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
11. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
12. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
13. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
14. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
15. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
16. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
17. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
18. mainSort : negated conditional → NO_COVERAGE
19. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
20. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
21. mainSort : Negated integer local variable number 8 → NO_COVERAGE
22. mainSort : Negated integer local variable number 9 → NO_COVERAGE
23. mainSort : Negated integer array field → NO_COVERAGE
24. mainSort : Negated integer array field → NO_COVERAGE
25. mainSort : Negated integer local variable number 8 → NO_COVERAGE
26. mainSort : Negated integer local variable number 9 → NO_COVERAGE
27. mainSort : Negated integer array field → NO_COVERAGE
28. mainSort : Negated integer array field → NO_COVERAGE
29. mainSort : Negated integer local variable number 10 → NO_COVERAGE
30. mainSort : Negated integer array field → NO_COVERAGE
31. mainSort : Negated integer local variable number 10 → NO_COVERAGE
32. mainSort : Negated integer array field → NO_COVERAGE
33. mainSort : Replaced integer operation with first member → NO_COVERAGE
34. mainSort : Replaced integer operation with first member → NO_COVERAGE
35. mainSort : Replaced integer operation with first member → NO_COVERAGE
36. mainSort : Replaced integer operation with first member → NO_COVERAGE
37. mainSort : Replaced integer operation with first member → NO_COVERAGE
38. mainSort : Replaced integer operation with first member → NO_COVERAGE
39. mainSort : Replaced integer operation by second member → NO_COVERAGE
40. mainSort : Replaced integer operation by second member → NO_COVERAGE
41. mainSort : Replaced integer operation by second member → NO_COVERAGE
42. mainSort : Replaced integer operation by second member → NO_COVERAGE
43. mainSort : Replaced integer operation by second member → NO_COVERAGE
44. mainSort : Replaced integer operation by second member → NO_COVERAGE
45. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
46. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
47. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
48. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
49. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
50. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
51. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
52. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
53. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
54. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
55. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
56. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
57. mainSort : Replaced integer subtraction with division → NO_COVERAGE
58. mainSort : Replaced integer addition with division → NO_COVERAGE
59. mainSort : Replaced integer subtraction with division → NO_COVERAGE
60. mainSort : Replaced integer subtraction with division → NO_COVERAGE
61. mainSort : Replaced integer addition with division → NO_COVERAGE
62. mainSort : Replaced integer subtraction with division → NO_COVERAGE
63. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
64. mainSort : Replaced integer addition with modulus → NO_COVERAGE
65. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
66. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
67. mainSort : Replaced integer addition with modulus → NO_COVERAGE
68. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
69. mainSort : Substituted 8 with 1 → NO_COVERAGE
70. mainSort : Substituted 8 with 1 → NO_COVERAGE
71. mainSort : Substituted 8 with 1 → NO_COVERAGE
72. mainSort : Substituted 8 with 1 → NO_COVERAGE
73. mainSort : Substituted 1 with 0 → NO_COVERAGE
74. mainSort : Substituted 8 with 0 → NO_COVERAGE
75. mainSort : Substituted 8 with 0 → NO_COVERAGE
76. mainSort : Substituted 1 with 0 → NO_COVERAGE
77. mainSort : Substituted 8 with 0 → NO_COVERAGE
78. mainSort : Substituted 8 with 0 → NO_COVERAGE
79. mainSort : Substituted 1 with -1 → NO_COVERAGE
80. mainSort : Substituted 8 with -1 → NO_COVERAGE
81. mainSort : Substituted 8 with -1 → NO_COVERAGE
82. mainSort : Substituted 1 with -1 → NO_COVERAGE
83. mainSort : Substituted 8 with -1 → NO_COVERAGE
84. mainSort : Substituted 8 with -1 → NO_COVERAGE
85. mainSort : Substituted 1 with -1 → NO_COVERAGE
86. mainSort : Substituted 8 with -8 → NO_COVERAGE
87. mainSort : Substituted 8 with -8 → NO_COVERAGE
88. mainSort : Substituted 1 with -1 → NO_COVERAGE
89. mainSort : Substituted 8 with -8 → NO_COVERAGE
90. mainSort : Substituted 8 with -8 → NO_COVERAGE
91. mainSort : Substituted 1 with 2 → NO_COVERAGE
92. mainSort : Substituted 8 with 9 → NO_COVERAGE
93. mainSort : Substituted 8 with 9 → NO_COVERAGE
94. mainSort : Substituted 1 with 2 → NO_COVERAGE
95. mainSort : Substituted 8 with 9 → NO_COVERAGE
96. mainSort : Substituted 8 with 9 → NO_COVERAGE
97. mainSort : Substituted 1 with 0 → NO_COVERAGE
98. mainSort : Substituted 8 with 7 → NO_COVERAGE
99. mainSort : Substituted 8 with 7 → NO_COVERAGE
100. mainSort : Substituted 1 with 0 → NO_COVERAGE
101. mainSort : Substituted 8 with 7 → NO_COVERAGE
102. mainSort : Substituted 8 with 7 → NO_COVERAGE
103. mainSort : Less or equal to less than → NO_COVERAGE
104. mainSort : Less or equal to greater than → NO_COVERAGE
105. mainSort : Less or equal to greater or equal → NO_COVERAGE
106. mainSort : Less or equal to equal → NO_COVERAGE
107. mainSort : Less or equal to not equal → NO_COVERAGE
108. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
109. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
110. mainSort : Incremented (a++) integer array field → NO_COVERAGE
111. mainSort : Incremented (a++) integer array field → NO_COVERAGE
112. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
113. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
114. mainSort : Incremented (a++) integer array field → NO_COVERAGE
115. mainSort : Incremented (a++) integer array field → NO_COVERAGE
116. mainSort : Incremented (a++) integer local variable number 11 → NO_COVERAGE
117. mainSort : Incremented (a++) integer array field → NO_COVERAGE
118. mainSort : Incremented (a++) integer local variable number 11 → NO_COVERAGE
119. mainSort : Incremented (a++) integer array field → NO_COVERAGE
120. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
121. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
122. mainSort : Decremented (a--) integer array field → NO_COVERAGE
123. mainSort : Decremented (a--) integer array field → NO_COVERAGE
124. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
125. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
126. mainSort : Decremented (a--) integer array field → NO_COVERAGE
127. mainSort : Decremented (a--) integer array field → NO_COVERAGE
128. mainSort : Decremented (a--) integer local variable number 11 → NO_COVERAGE
129. mainSort : Decremented (a--) integer array field → NO_COVERAGE
130. mainSort : Decremented (a--) integer local variable number 11 → NO_COVERAGE
131. mainSort : Decremented (a--) integer array field → NO_COVERAGE
132. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
133. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
134. mainSort : Incremented (++a) integer array field → NO_COVERAGE
135. mainSort : Incremented (++a) integer array field → NO_COVERAGE
136. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
137. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
138. mainSort : Incremented (++a) integer array field → NO_COVERAGE
139. mainSort : Incremented (++a) integer array field → NO_COVERAGE
140. mainSort : Incremented (++a) integer local variable number 11 → NO_COVERAGE
141. mainSort : Incremented (++a) integer array field → NO_COVERAGE
142. mainSort : Incremented (++a) integer local variable number 11 → NO_COVERAGE
143. mainSort : Incremented (++a) integer array field → NO_COVERAGE
144. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
145. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
146. mainSort : Decremented (--a) integer array field → NO_COVERAGE
147. mainSort : Decremented (--a) integer array field → NO_COVERAGE
148. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
149. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
150. mainSort : Decremented (--a) integer array field → NO_COVERAGE
151. mainSort : Decremented (--a) integer array field → NO_COVERAGE
152. mainSort : Decremented (--a) integer local variable number 11 → NO_COVERAGE
153. mainSort : Decremented (--a) integer array field → NO_COVERAGE
154. mainSort : Decremented (--a) integer local variable number 11 → NO_COVERAGE
155. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        while ((ftab[((runningOrder[j - h]) + 1) << 8]
1215
                                - ftab[(runningOrder[j - h]) << 8])
1216
                               > (ftab[((vv) + 1) << 8] - ftab[(vv) << 8])) {
1217 27 1. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
2. mainSort : Negated integer local variable number 8 → NO_COVERAGE
3. mainSort : Negated integer local variable number 8 → NO_COVERAGE
4. mainSort : Negated integer local variable number 9 → NO_COVERAGE
5. mainSort : Negated integer array field → NO_COVERAGE
6. mainSort : Replaced integer operation with first member → NO_COVERAGE
7. mainSort : Replaced integer operation by second member → NO_COVERAGE
8. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
9. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
10. mainSort : Replaced integer subtraction with division → NO_COVERAGE
11. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
12. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
13. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
14. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
15. mainSort : Incremented (a++) integer array field → NO_COVERAGE
16. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
17. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
18. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
19. mainSort : Decremented (a--) integer array field → NO_COVERAGE
20. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
21. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
22. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
23. mainSort : Incremented (++a) integer array field → NO_COVERAGE
24. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
25. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
26. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
27. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                            runningOrder[j] = runningOrder[j - h];
1218 17 1. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
2. mainSort : Negated integer local variable number 8 → NO_COVERAGE
3. mainSort : Negated integer local variable number 9 → NO_COVERAGE
4. mainSort : Replaced integer operation with first member → NO_COVERAGE
5. mainSort : Replaced integer operation by second member → NO_COVERAGE
6. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
7. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
8. mainSort : Replaced integer subtraction with division → NO_COVERAGE
9. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
10. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
11. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
12. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
13. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
14. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
15. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
16. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
17. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                            j = j - h;
1219 32 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Substituted 1 with 0 → NO_COVERAGE
3. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
4. mainSort : negated conditional → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
7. mainSort : Negated integer local variable number 8 → NO_COVERAGE
8. mainSort : Negated integer local variable number 9 → NO_COVERAGE
9. mainSort : Replaced integer operation with first member → NO_COVERAGE
10. mainSort : Replaced integer operation by second member → NO_COVERAGE
11. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
12. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
13. mainSort : Replaced integer subtraction with division → NO_COVERAGE
14. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
15. mainSort : Substituted 1 with 0 → NO_COVERAGE
16. mainSort : Substituted 1 with -1 → NO_COVERAGE
17. mainSort : Substituted 1 with -1 → NO_COVERAGE
18. mainSort : Substituted 1 with 2 → NO_COVERAGE
19. mainSort : Substituted 1 with 0 → NO_COVERAGE
20. mainSort : greater than to less than → NO_COVERAGE
21. mainSort : greater than to less or equal → NO_COVERAGE
22. mainSort : greater than to greater or equal → NO_COVERAGE
23. mainSort : greater than to equal → NO_COVERAGE
24. mainSort : greater than to not equal → NO_COVERAGE
25. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
26. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
27. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
28. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
29. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
30. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
31. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
32. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                            if (j <= (h - 1)) {
1220
                                break;
1221
                            }
1222
                        }
1223 10 1. mainSort : Negated integer local variable number 8 → NO_COVERAGE
2. mainSort : Negated integer local variable number 10 → NO_COVERAGE
3. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
4. mainSort : Incremented (a++) integer local variable number 11 → NO_COVERAGE
5. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
6. mainSort : Decremented (a--) integer local variable number 11 → NO_COVERAGE
7. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
8. mainSort : Incremented (++a) integer local variable number 11 → NO_COVERAGE
9. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
10. mainSort : Decremented (--a) integer local variable number 11 → NO_COVERAGE
                        runningOrder[j] = vv;
1224
                    }
1225 19 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : negated conditional → NO_COVERAGE
3. mainSort : removed conditional - replaced equality check with false → NO_COVERAGE
4. mainSort : removed conditional - replaced equality check with true → NO_COVERAGE
5. mainSort : Negated integer local variable number 9 → NO_COVERAGE
6. mainSort : Substituted 1 with 0 → NO_COVERAGE
7. mainSort : Substituted 1 with -1 → NO_COVERAGE
8. mainSort : Substituted 1 with -1 → NO_COVERAGE
9. mainSort : Substituted 1 with 2 → NO_COVERAGE
10. mainSort : Substituted 1 with 0 → NO_COVERAGE
11. mainSort : not equal to less than → NO_COVERAGE
12. mainSort : not equal to less or equal → NO_COVERAGE
13. mainSort : not equal to greater than → NO_COVERAGE
14. mainSort : not equal to greater or equal → NO_COVERAGE
15. mainSort : not equal to equal → NO_COVERAGE
16. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
17. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
18. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
19. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                } while (h != 1);
1226
            }
1227
1228 7 1. mainSort : Substituted 1000 with 1001 → NO_COVERAGE
2. mainSort : Substituted 1000 with 1 → NO_COVERAGE
3. mainSort : Substituted 1000 with 0 → NO_COVERAGE
4. mainSort : Substituted 1000 with -1 → NO_COVERAGE
5. mainSort : Substituted 1000 with -1000 → NO_COVERAGE
6. mainSort : Substituted 1000 with 1001 → NO_COVERAGE
7. mainSort : Substituted 1000 with 999 → NO_COVERAGE
            StackElem[] stack = new StackElem[QSORT_STACK_SIZE];
1229 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 1000 with 1001 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer local variable number 9 → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 1000 with 1 → NO_COVERAGE
11. mainSort : Substituted 1000 with 0 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : Substituted 1000 with -1 → NO_COVERAGE
14. mainSort : Substituted 1000 with -1000 → NO_COVERAGE
15. mainSort : Substituted 0 with 1 → NO_COVERAGE
16. mainSort : Substituted 1000 with 1001 → NO_COVERAGE
17. mainSort : Substituted 0 with -1 → NO_COVERAGE
18. mainSort : Substituted 1000 with 999 → NO_COVERAGE
19. mainSort : greater or equal to less than → NO_COVERAGE
20. mainSort : greater or equal to less or equal → NO_COVERAGE
21. mainSort : greater or equal to greater than → NO_COVERAGE
22. mainSort : greater or equal to equal → NO_COVERAGE
23. mainSort : greater or equal to not equal → NO_COVERAGE
24. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
25. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
            for (int count = 0; count < QSORT_STACK_SIZE; count++) {
1230 6 1. mainSort : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream$StackElem::<init> → NO_COVERAGE
2. mainSort : Negated integer local variable number 9 → NO_COVERAGE
3. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
4. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
5. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
6. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                stack[count] = new StackElem();
1231
            }
1232
1233
            /*
1234
              The main sorting loop.
1235
            */
1236 28 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 255 with 256 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Removed increment 1 → NO_COVERAGE
9. mainSort : Negated integer local variable number 4 → NO_COVERAGE
10. mainSort : Substituted 0 with 1 → NO_COVERAGE
11. mainSort : Substituted 255 with 1 → NO_COVERAGE
12. mainSort : Substituted 255 with 0 → NO_COVERAGE
13. mainSort : Substituted 0 with -1 → NO_COVERAGE
14. mainSort : Substituted 255 with -1 → NO_COVERAGE
15. mainSort : Substituted 255 with -255 → NO_COVERAGE
16. mainSort : Substituted 0 with 1 → NO_COVERAGE
17. mainSort : Substituted 255 with 256 → NO_COVERAGE
18. mainSort : Substituted 0 with -1 → NO_COVERAGE
19. mainSort : Substituted 255 with 254 → NO_COVERAGE
20. mainSort : greater than to less than → NO_COVERAGE
21. mainSort : greater than to less or equal → NO_COVERAGE
22. mainSort : greater than to greater or equal → NO_COVERAGE
23. mainSort : greater than to equal → NO_COVERAGE
24. mainSort : greater than to not equal → NO_COVERAGE
25. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
26. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
27. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
28. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            for (i = 0; i <= 255; i++) {
1237
1238
                /*
1239
                  Process big buckets, starting with the least full.
1240
                */
1241 10 1. mainSort : Negated integer local variable number 4 → NO_COVERAGE
2. mainSort : Negated integer array field → NO_COVERAGE
3. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
4. mainSort : Incremented (a++) integer array field → NO_COVERAGE
5. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
6. mainSort : Decremented (a--) integer array field → NO_COVERAGE
7. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
8. mainSort : Incremented (++a) integer array field → NO_COVERAGE
9. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
10. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                ss = runningOrder[i];
1242
1243
                /*
1244
                  Complete the big bucket [ss] by quicksorting
1245
                  any unsorted small buckets [ss, j].  Hopefully
1246
                  previous pointer-scanning phases have already
1247
                  completed many of the small buckets [ss, j], so
1248
                  we don't have to sort them at all.
1249
                */
1250 28 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 255 with 256 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Removed increment 1 → NO_COVERAGE
9. mainSort : Negated integer local variable number 8 → NO_COVERAGE
10. mainSort : Substituted 0 with 1 → NO_COVERAGE
11. mainSort : Substituted 255 with 1 → NO_COVERAGE
12. mainSort : Substituted 255 with 0 → NO_COVERAGE
13. mainSort : Substituted 0 with -1 → NO_COVERAGE
14. mainSort : Substituted 255 with -1 → NO_COVERAGE
15. mainSort : Substituted 255 with -255 → NO_COVERAGE
16. mainSort : Substituted 0 with 1 → NO_COVERAGE
17. mainSort : Substituted 255 with 256 → NO_COVERAGE
18. mainSort : Substituted 0 with -1 → NO_COVERAGE
19. mainSort : Substituted 255 with 254 → NO_COVERAGE
20. mainSort : greater than to less than → NO_COVERAGE
21. mainSort : greater than to less or equal → NO_COVERAGE
22. mainSort : greater than to greater or equal → NO_COVERAGE
23. mainSort : greater than to equal → NO_COVERAGE
24. mainSort : greater than to not equal → NO_COVERAGE
25. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
26. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
27. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
28. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
                for (j = 0; j <= 255; j++) {
1251 25 1. mainSort : Substituted 8 with 9 → NO_COVERAGE
2. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
3. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
4. mainSort : Negated integer local variable number 11 → NO_COVERAGE
5. mainSort : Negated integer local variable number 8 → NO_COVERAGE
6. mainSort : Replaced integer operation with first member → NO_COVERAGE
7. mainSort : Replaced integer operation by second member → NO_COVERAGE
8. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
9. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
10. mainSort : Replaced integer addition with division → NO_COVERAGE
11. mainSort : Replaced integer addition with modulus → NO_COVERAGE
12. mainSort : Substituted 8 with 1 → NO_COVERAGE
13. mainSort : Substituted 8 with 0 → NO_COVERAGE
14. mainSort : Substituted 8 with -1 → NO_COVERAGE
15. mainSort : Substituted 8 with -8 → NO_COVERAGE
16. mainSort : Substituted 8 with 9 → NO_COVERAGE
17. mainSort : Substituted 8 with 7 → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
19. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
20. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
21. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
22. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
23. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
24. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
25. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
                    sb = (ss << 8) + j;
1252 36 1. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
2. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
3. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
4. mainSort : negated conditional → NO_COVERAGE
5. mainSort : removed conditional - replaced equality check with false → NO_COVERAGE
6. mainSort : removed conditional - replaced equality check with true → NO_COVERAGE
7. mainSort : Negated integer local variable number 12 → NO_COVERAGE
8. mainSort : Negated integer array field → NO_COVERAGE
9. mainSort : Substituted 2097152 with 1 → NO_COVERAGE
10. mainSort : Substituted 2097152 with 1 → NO_COVERAGE
11. mainSort : Substituted 2097152 with 0 → NO_COVERAGE
12. mainSort : Substituted 2097152 with 0 → NO_COVERAGE
13. mainSort : Substituted 2097152 with -1 → NO_COVERAGE
14. mainSort : Substituted 2097152 with -1 → NO_COVERAGE
15. mainSort : Substituted 2097152 with -2097152 → NO_COVERAGE
16. mainSort : Substituted 2097152 with -2097152 → NO_COVERAGE
17. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
18. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
19. mainSort : Substituted 2097152 with 2097151 → NO_COVERAGE
20. mainSort : Substituted 2097152 with 2097151 → NO_COVERAGE
21. mainSort : Replaced integer and with or → NO_COVERAGE
22. mainSort : Replaced integer and by first member → NO_COVERAGE
23. mainSort : Replace integer and by second member → NO_COVERAGE
24. mainSort : equal to less than → NO_COVERAGE
25. mainSort : equal to less or equal → NO_COVERAGE
26. mainSort : equal to greater than → NO_COVERAGE
27. mainSort : equal to greater or equal → NO_COVERAGE
28. mainSort : equal to not equal → NO_COVERAGE
29. mainSort : Incremented (a++) integer local variable number 4 → NO_COVERAGE
30. mainSort : Incremented (a++) integer array field → NO_COVERAGE
31. mainSort : Decremented (a--) integer local variable number 4 → NO_COVERAGE
32. mainSort : Decremented (a--) integer array field → NO_COVERAGE
33. mainSort : Incremented (++a) integer local variable number 4 → NO_COVERAGE
34. mainSort : Incremented (++a) integer array field → NO_COVERAGE
35. mainSort : Decremented (--a) integer local variable number 4 → NO_COVERAGE
36. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                    if (!((ftab[sb] & SETMASK) == SETMASK)) {
1253 21 1. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
2. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
3. mainSort : Negated integer local variable number 12 → NO_COVERAGE
4. mainSort : Negated integer array field → NO_COVERAGE
5. mainSort : Substituted -2097153 with 1 → NO_COVERAGE
6. mainSort : Substituted -2097153 with 0 → NO_COVERAGE
7. mainSort : Substituted -2097153 with -1 → NO_COVERAGE
8. mainSort : Substituted -2097153 with 2097153 → NO_COVERAGE
9. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
10. mainSort : Substituted -2097153 with -2097154 → NO_COVERAGE
11. mainSort : Replaced integer and with or → NO_COVERAGE
12. mainSort : Replaced integer and by first member → NO_COVERAGE
13. mainSort : Replace integer and by second member → NO_COVERAGE
14. mainSort : Incremented (a++) integer local variable number 4 → NO_COVERAGE
15. mainSort : Incremented (a++) integer array field → NO_COVERAGE
16. mainSort : Decremented (a--) integer local variable number 4 → NO_COVERAGE
17. mainSort : Decremented (a--) integer array field → NO_COVERAGE
18. mainSort : Incremented (++a) integer local variable number 4 → NO_COVERAGE
19. mainSort : Incremented (++a) integer array field → NO_COVERAGE
20. mainSort : Decremented (--a) integer local variable number 4 → NO_COVERAGE
21. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        int lo = ftab[sb] & CLEARMASK;
1254 47 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
3. mainSort : Substituted 1 with 0 → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
6. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
7. mainSort : Negated integer local variable number 12 → NO_COVERAGE
8. mainSort : Negated integer array field → NO_COVERAGE
9. mainSort : Replaced integer operation with first member → NO_COVERAGE
10. mainSort : Replaced integer operation with first member → NO_COVERAGE
11. mainSort : Replaced integer operation by second member → NO_COVERAGE
12. mainSort : Replaced integer operation by second member → NO_COVERAGE
13. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
14. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
15. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
16. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
17. mainSort : Replaced integer addition with division → NO_COVERAGE
18. mainSort : Replaced integer subtraction with division → NO_COVERAGE
19. mainSort : Replaced integer addition with modulus → NO_COVERAGE
20. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
21. mainSort : Substituted -2097153 with 1 → NO_COVERAGE
22. mainSort : Substituted 1 with 0 → NO_COVERAGE
23. mainSort : Substituted -2097153 with 0 → NO_COVERAGE
24. mainSort : Substituted 1 with 0 → NO_COVERAGE
25. mainSort : Substituted 1 with -1 → NO_COVERAGE
26. mainSort : Substituted -2097153 with -1 → NO_COVERAGE
27. mainSort : Substituted 1 with -1 → NO_COVERAGE
28. mainSort : Substituted 1 with -1 → NO_COVERAGE
29. mainSort : Substituted -2097153 with 2097153 → NO_COVERAGE
30. mainSort : Substituted 1 with -1 → NO_COVERAGE
31. mainSort : Substituted 1 with 2 → NO_COVERAGE
32. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
33. mainSort : Substituted 1 with 2 → NO_COVERAGE
34. mainSort : Substituted 1 with 0 → NO_COVERAGE
35. mainSort : Substituted -2097153 with -2097154 → NO_COVERAGE
36. mainSort : Substituted 1 with 0 → NO_COVERAGE
37. mainSort : Replaced integer and with or → NO_COVERAGE
38. mainSort : Replaced integer and by first member → NO_COVERAGE
39. mainSort : Replace integer and by second member → NO_COVERAGE
40. mainSort : Incremented (a++) integer local variable number 4 → NO_COVERAGE
41. mainSort : Incremented (a++) integer array field → NO_COVERAGE
42. mainSort : Decremented (a--) integer local variable number 4 → NO_COVERAGE
43. mainSort : Decremented (a--) integer array field → NO_COVERAGE
44. mainSort : Incremented (++a) integer local variable number 4 → NO_COVERAGE
45. mainSort : Incremented (++a) integer array field → NO_COVERAGE
46. mainSort : Decremented (--a) integer local variable number 4 → NO_COVERAGE
47. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        int hi = (ftab[sb + 1] & CLEARMASK) - 1;
1255 19 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : negated conditional → NO_COVERAGE
3. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
4. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
5. mainSort : Negated integer local variable number 13 → NO_COVERAGE
6. mainSort : Negated integer local variable number 9 → NO_COVERAGE
7. mainSort : Less or equal to less than → NO_COVERAGE
8. mainSort : Less or equal to greater than → NO_COVERAGE
9. mainSort : Less or equal to greater or equal → NO_COVERAGE
10. mainSort : Less or equal to equal → NO_COVERAGE
11. mainSort : Less or equal to not equal → NO_COVERAGE
12. mainSort : Incremented (a++) integer local variable number 13 → NO_COVERAGE
13. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
14. mainSort : Decremented (a--) integer local variable number 13 → NO_COVERAGE
15. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
16. mainSort : Incremented (++a) integer local variable number 13 → NO_COVERAGE
17. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
18. mainSort : Decremented (--a) integer local variable number 13 → NO_COVERAGE
19. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                        if (hi > lo) {
1256 18 1. mainSort : Substituted 2 with 3 → NO_COVERAGE
2. mainSort : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::qSort3 → NO_COVERAGE
3. mainSort : Negated integer local variable number 9 → NO_COVERAGE
4. mainSort : Negated integer local variable number 13 → NO_COVERAGE
5. mainSort : Substituted 2 with 1 → NO_COVERAGE
6. mainSort : Substituted 2 with 0 → NO_COVERAGE
7. mainSort : Substituted 2 with -1 → NO_COVERAGE
8. mainSort : Substituted 2 with -2 → NO_COVERAGE
9. mainSort : Substituted 2 with 3 → NO_COVERAGE
10. mainSort : Substituted 2 with 1 → NO_COVERAGE
11. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
12. mainSort : Incremented (a++) integer local variable number 13 → NO_COVERAGE
13. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
14. mainSort : Decremented (a--) integer local variable number 13 → NO_COVERAGE
15. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
16. mainSort : Incremented (++a) integer local variable number 13 → NO_COVERAGE
17. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
18. mainSort : Decremented (--a) integer local variable number 13 → NO_COVERAGE
                            qSort3(lo, hi, 2, stack);
1257 42 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
3. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Negated integer local variable number 5 → NO_COVERAGE
6. mainSort : Negated integer local variable number 13 → NO_COVERAGE
7. mainSort : Negated integer local variable number 9 → NO_COVERAGE
8. mainSort : Replaced integer operation with first member → NO_COVERAGE
9. mainSort : Replaced integer operation with first member → NO_COVERAGE
10. mainSort : Replaced integer operation with first member → NO_COVERAGE
11. mainSort : Replaced integer operation by second member → NO_COVERAGE
12. mainSort : Replaced integer operation by second member → NO_COVERAGE
13. mainSort : Replaced integer operation by second member → NO_COVERAGE
14. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
15. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
16. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
17. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
18. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
19. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
20. mainSort : Replaced integer subtraction with division → NO_COVERAGE
21. mainSort : Replaced integer addition with division → NO_COVERAGE
22. mainSort : Replaced integer addition with division → NO_COVERAGE
23. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
24. mainSort : Replaced integer addition with modulus → NO_COVERAGE
25. mainSort : Replaced integer addition with modulus → NO_COVERAGE
26. mainSort : Substituted 1 with 0 → NO_COVERAGE
27. mainSort : Substituted 1 with -1 → NO_COVERAGE
28. mainSort : Substituted 1 with -1 → NO_COVERAGE
29. mainSort : Substituted 1 with 2 → NO_COVERAGE
30. mainSort : Substituted 1 with 0 → NO_COVERAGE
31. mainSort : Incremented (a++) integer local variable number 10 → NO_COVERAGE
32. mainSort : Incremented (a++) integer local variable number 13 → NO_COVERAGE
33. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
34. mainSort : Decremented (a--) integer local variable number 10 → NO_COVERAGE
35. mainSort : Decremented (a--) integer local variable number 13 → NO_COVERAGE
36. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
37. mainSort : Incremented (++a) integer local variable number 10 → NO_COVERAGE
38. mainSort : Incremented (++a) integer local variable number 13 → NO_COVERAGE
39. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
40. mainSort : Decremented (--a) integer local variable number 10 → NO_COVERAGE
41. mainSort : Decremented (--a) integer local variable number 13 → NO_COVERAGE
42. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                            numQSorted += (hi - lo + 1);
1258 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : negated conditional → NO_COVERAGE
3. mainSort : negated conditional → NO_COVERAGE
4. mainSort : removed conditional - replaced equality check with false → NO_COVERAGE
5. mainSort : removed conditional - replaced equality check with true → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer field workDone → NO_COVERAGE
9. mainSort : Negated integer field workLimit → NO_COVERAGE
10. mainSort : Less or equal to less than → NO_COVERAGE
11. mainSort : equal to less than → NO_COVERAGE
12. mainSort : Less or equal to greater than → NO_COVERAGE
13. mainSort : equal to less or equal → NO_COVERAGE
14. mainSort : Less or equal to greater or equal → NO_COVERAGE
15. mainSort : equal to greater than → NO_COVERAGE
16. mainSort : Less or equal to equal → NO_COVERAGE
17. mainSort : equal to greater or equal → NO_COVERAGE
18. mainSort : Less or equal to not equal → NO_COVERAGE
19. mainSort : equal to not equal → NO_COVERAGE
20. mainSort : Incremented (a++) integer field workDone → NO_COVERAGE
21. mainSort : Incremented (a++) integer field workLimit → NO_COVERAGE
22. mainSort : Decremented (a--) integer field workDone → NO_COVERAGE
23. mainSort : Decremented (a--) integer field workLimit → NO_COVERAGE
24. mainSort : Incremented (++a) integer field workDone → NO_COVERAGE
25. mainSort : Incremented (++a) integer field workLimit → NO_COVERAGE
26. mainSort : Decremented (--a) integer fieldworkDone → NO_COVERAGE
27. mainSort : Decremented (--a) integer fieldworkLimit → NO_COVERAGE
                            if (workDone > workLimit && firstAttempt) {
1259
                                return;
1260
                            }
1261
                        }
1262 21 1. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
2. mainSort : Replaced bitwise OR with AND → NO_COVERAGE
3. mainSort : Negated integer local variable number 12 → NO_COVERAGE
4. mainSort : Negated integer array field → NO_COVERAGE
5. mainSort : Substituted 2097152 with 1 → NO_COVERAGE
6. mainSort : Substituted 2097152 with 0 → NO_COVERAGE
7. mainSort : Substituted 2097152 with -1 → NO_COVERAGE
8. mainSort : Substituted 2097152 with -2097152 → NO_COVERAGE
9. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
10. mainSort : Substituted 2097152 with 2097151 → NO_COVERAGE
11. mainSort : Replaced integer or with and → NO_COVERAGE
12. mainSort : Replaced integer or by first member → NO_COVERAGE
13. mainSort : Replace integer or by second member → NO_COVERAGE
14. mainSort : Incremented (a++) integer local variable number 4 → NO_COVERAGE
15. mainSort : Incremented (a++) integer array field → NO_COVERAGE
16. mainSort : Decremented (a--) integer local variable number 4 → NO_COVERAGE
17. mainSort : Decremented (a--) integer array field → NO_COVERAGE
18. mainSort : Incremented (++a) integer local variable number 4 → NO_COVERAGE
19. mainSort : Incremented (++a) integer array field → NO_COVERAGE
20. mainSort : Decremented (--a) integer local variable number 4 → NO_COVERAGE
21. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        ftab[sb] |= SETMASK;
1263
                    }
1264
                }
1265
1266
                /*
1267
                  The ss big bucket is now done.  Record this fact,
1268
                  and update the quadrant descriptors.  Remember to
1269
                  update quadrants in the overshoot area too, if
1270
                  necessary.  The "if (i < 255)" test merely skips
1271
                  this updating for the last bucket processed, since
1272
                  updating for the last bucket is pointless.
1273
                */
1274 11 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Negated integer local variable number 11 → NO_COVERAGE
3. mainSort : Substituted 1 with 0 → NO_COVERAGE
4. mainSort : Substituted 1 with -1 → NO_COVERAGE
5. mainSort : Substituted 1 with -1 → NO_COVERAGE
6. mainSort : Substituted 1 with 2 → NO_COVERAGE
7. mainSort : Substituted 1 with 0 → NO_COVERAGE
8. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
9. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
10. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
11. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
                bigDone[ss] = true;
1275
1276 21 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Substituted 255 with 256 → NO_COVERAGE
3. mainSort : negated conditional → NO_COVERAGE
4. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
6. mainSort : Negated integer local variable number 4 → NO_COVERAGE
7. mainSort : Substituted 255 with 1 → NO_COVERAGE
8. mainSort : Substituted 255 with 0 → NO_COVERAGE
9. mainSort : Substituted 255 with -1 → NO_COVERAGE
10. mainSort : Substituted 255 with -255 → NO_COVERAGE
11. mainSort : Substituted 255 with 256 → NO_COVERAGE
12. mainSort : Substituted 255 with 254 → NO_COVERAGE
13. mainSort : greater or equal to less than → NO_COVERAGE
14. mainSort : greater or equal to less or equal → NO_COVERAGE
15. mainSort : greater or equal to greater than → NO_COVERAGE
16. mainSort : greater or equal to equal → NO_COVERAGE
17. mainSort : greater or equal to not equal → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 1 → NO_COVERAGE
19. mainSort : Decremented (a--) integer local variable number 1 → NO_COVERAGE
20. mainSort : Incremented (++a) integer local variable number 1 → NO_COVERAGE
21. mainSort : Decremented (--a) integer local variable number 1 → NO_COVERAGE
                if (i < 255) {
1277 29 1. mainSort : Substituted 8 with 9 → NO_COVERAGE
2. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
3. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
4. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
5. mainSort : Negated integer local variable number 11 → NO_COVERAGE
6. mainSort : Negated integer array field → NO_COVERAGE
7. mainSort : Substituted 8 with 1 → NO_COVERAGE
8. mainSort : Substituted -2097153 with 1 → NO_COVERAGE
9. mainSort : Substituted 8 with 0 → NO_COVERAGE
10. mainSort : Substituted -2097153 with 0 → NO_COVERAGE
11. mainSort : Substituted 8 with -1 → NO_COVERAGE
12. mainSort : Substituted -2097153 with -1 → NO_COVERAGE
13. mainSort : Substituted 8 with -8 → NO_COVERAGE
14. mainSort : Substituted -2097153 with 2097153 → NO_COVERAGE
15. mainSort : Substituted 8 with 9 → NO_COVERAGE
16. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
17. mainSort : Substituted 8 with 7 → NO_COVERAGE
18. mainSort : Substituted -2097153 with -2097154 → NO_COVERAGE
19. mainSort : Replaced integer and with or → NO_COVERAGE
20. mainSort : Replaced integer and by first member → NO_COVERAGE
21. mainSort : Replace integer and by second member → NO_COVERAGE
22. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
23. mainSort : Incremented (a++) integer array field → NO_COVERAGE
24. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
25. mainSort : Decremented (a--) integer array field → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
27. mainSort : Incremented (++a) integer array field → NO_COVERAGE
28. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
29. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                    int bbStart  = ftab[ss << 8] & CLEARMASK;
1278 54 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Substituted 8 with 9 → NO_COVERAGE
3. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
6. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
7. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
8. mainSort : Negated integer local variable number 11 → NO_COVERAGE
9. mainSort : Negated integer array field → NO_COVERAGE
10. mainSort : Negated integer local variable number 9 → NO_COVERAGE
11. mainSort : Replaced integer operation with first member → NO_COVERAGE
12. mainSort : Replaced integer operation with first member → NO_COVERAGE
13. mainSort : Replaced integer operation by second member → NO_COVERAGE
14. mainSort : Replaced integer operation by second member → NO_COVERAGE
15. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
16. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
17. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
18. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
19. mainSort : Replaced integer addition with division → NO_COVERAGE
20. mainSort : Replaced integer subtraction with division → NO_COVERAGE
21. mainSort : Replaced integer addition with modulus → NO_COVERAGE
22. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
23. mainSort : Substituted 8 with 1 → NO_COVERAGE
24. mainSort : Substituted -2097153 with 1 → NO_COVERAGE
25. mainSort : Substituted 1 with 0 → NO_COVERAGE
26. mainSort : Substituted 8 with 0 → NO_COVERAGE
27. mainSort : Substituted -2097153 with 0 → NO_COVERAGE
28. mainSort : Substituted 1 with -1 → NO_COVERAGE
29. mainSort : Substituted 8 with -1 → NO_COVERAGE
30. mainSort : Substituted -2097153 with -1 → NO_COVERAGE
31. mainSort : Substituted 1 with -1 → NO_COVERAGE
32. mainSort : Substituted 8 with -8 → NO_COVERAGE
33. mainSort : Substituted -2097153 with 2097153 → NO_COVERAGE
34. mainSort : Substituted 1 with 2 → NO_COVERAGE
35. mainSort : Substituted 8 with 9 → NO_COVERAGE
36. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
37. mainSort : Substituted 1 with 0 → NO_COVERAGE
38. mainSort : Substituted 8 with 7 → NO_COVERAGE
39. mainSort : Substituted -2097153 with -2097154 → NO_COVERAGE
40. mainSort : Replaced integer and with or → NO_COVERAGE
41. mainSort : Replaced integer and by first member → NO_COVERAGE
42. mainSort : Replace integer and by second member → NO_COVERAGE
43. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
44. mainSort : Incremented (a++) integer array field → NO_COVERAGE
45. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
46. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
47. mainSort : Decremented (a--) integer array field → NO_COVERAGE
48. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
49. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
50. mainSort : Incremented (++a) integer array field → NO_COVERAGE
51. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
52. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
53. mainSort : Decremented (--a) integer array field → NO_COVERAGE
54. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
                    int bbSize   = (ftab[(ss + 1) << 8] & CLEARMASK) - bbStart;
1279 5 1. mainSort : Substituted 0 with 1 → NO_COVERAGE
2. mainSort : Substituted 0 with 1 → NO_COVERAGE
3. mainSort : Substituted 0 with -1 → NO_COVERAGE
4. mainSort : Substituted 0 with 1 → NO_COVERAGE
5. mainSort : Substituted 0 with -1 → NO_COVERAGE
                    int shifts   = 0;
1280
1281 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Substituted 65534 with 65535 → NO_COVERAGE
3. mainSort : Replaced Shift Right with Shift Left → NO_COVERAGE
4. mainSort : negated conditional → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
7. mainSort : Negated integer local variable number 13 → NO_COVERAGE
8. mainSort : Negated integer local variable number 14 → NO_COVERAGE
9. mainSort : Substituted 65534 with 1 → NO_COVERAGE
10. mainSort : Substituted 65534 with 0 → NO_COVERAGE
11. mainSort : Substituted 65534 with -1 → NO_COVERAGE
12. mainSort : Substituted 65534 with -65534 → NO_COVERAGE
13. mainSort : Substituted 65534 with 65535 → NO_COVERAGE
14. mainSort : Substituted 65534 with 65533 → NO_COVERAGE
15. mainSort : Less or equal to less than → NO_COVERAGE
16. mainSort : Less or equal to greater than → NO_COVERAGE
17. mainSort : Less or equal to greater or equal → NO_COVERAGE
18. mainSort : Less or equal to equal → NO_COVERAGE
19. mainSort : Less or equal to not equal → NO_COVERAGE
20. mainSort : Incremented (a++) integer local variable number 13 → NO_COVERAGE
21. mainSort : Incremented (a++) integer local variable number 14 → NO_COVERAGE
22. mainSort : Decremented (a--) integer local variable number 13 → NO_COVERAGE
23. mainSort : Decremented (a--) integer local variable number 14 → NO_COVERAGE
24. mainSort : Incremented (++a) integer local variable number 13 → NO_COVERAGE
25. mainSort : Incremented (++a) integer local variable number 14 → NO_COVERAGE
26. mainSort : Decremented (--a) integer local variable number 13 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 14 → NO_COVERAGE
                    while ((bbSize >> shifts) > 65534) {
1282 1 1. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
                        shifts++;
1283
                    }
1284
1285 25 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : negated conditional → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
7. mainSort : Negated integer local variable number 8 → NO_COVERAGE
8. mainSort : Negated integer local variable number 13 → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 0 with -1 → NO_COVERAGE
11. mainSort : Substituted 0 with 1 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : greater or equal to less than → NO_COVERAGE
14. mainSort : greater or equal to less or equal → NO_COVERAGE
15. mainSort : greater or equal to greater than → NO_COVERAGE
16. mainSort : greater or equal to equal → NO_COVERAGE
17. mainSort : greater or equal to not equal → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
19. mainSort : Incremented (a++) integer local variable number 13 → NO_COVERAGE
20. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
21. mainSort : Decremented (a--) integer local variable number 13 → NO_COVERAGE
22. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
23. mainSort : Incremented (++a) integer local variable number 13 → NO_COVERAGE
24. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
25. mainSort : Decremented (--a) integer local variable number 13 → NO_COVERAGE
                    for (j = 0; j < bbSize; j++) {
1286 22 1. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
2. mainSort : Negated integer local variable number 9 → NO_COVERAGE
3. mainSort : Negated integer local variable number 8 → NO_COVERAGE
4. mainSort : Negated integer array field → NO_COVERAGE
5. mainSort : Replaced integer operation with first member → NO_COVERAGE
6. mainSort : Replaced integer operation by second member → NO_COVERAGE
7. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
8. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
9. mainSort : Replaced integer addition with division → NO_COVERAGE
10. mainSort : Replaced integer addition with modulus → NO_COVERAGE
11. mainSort : Incremented (a++) integer local variable number 12 → NO_COVERAGE
12. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
13. mainSort : Incremented (a++) integer array field → NO_COVERAGE
14. mainSort : Decremented (a--) integer local variable number 12 → NO_COVERAGE
15. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
16. mainSort : Decremented (a--) integer array field → NO_COVERAGE
17. mainSort : Incremented (++a) integer local variable number 12 → NO_COVERAGE
18. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
19. mainSort : Incremented (++a) integer array field → NO_COVERAGE
20. mainSort : Decremented (--a) integer local variable number 12 → NO_COVERAGE
21. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
22. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        int a2update = zptr[bbStart + j];
1287 11 1. mainSort : Replaced Shift Right with Shift Left → NO_COVERAGE
2. mainSort : Negated integer local variable number 8 → NO_COVERAGE
3. mainSort : Negated integer local variable number 14 → NO_COVERAGE
4. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
5. mainSort : Incremented (a++) integer local variable number 14 → NO_COVERAGE
6. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
7. mainSort : Decremented (a--) integer local variable number 14 → NO_COVERAGE
8. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
9. mainSort : Incremented (++a) integer local variable number 14 → NO_COVERAGE
10. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
11. mainSort : Decremented (--a) integer local variable number 14 → NO_COVERAGE
                        int qVal = (j >> shifts);
1288 10 1. mainSort : Negated integer local variable number 15 → NO_COVERAGE
2. mainSort : Negated integer local variable number 16 → NO_COVERAGE
3. mainSort : Incremented (a++) integer local variable number 15 → NO_COVERAGE
4. mainSort : Incremented (a++) integer local variable number 16 → NO_COVERAGE
5. mainSort : Decremented (a--) integer local variable number 15 → NO_COVERAGE
6. mainSort : Decremented (a--) integer local variable number 16 → NO_COVERAGE
7. mainSort : Incremented (++a) integer local variable number 15 → NO_COVERAGE
8. mainSort : Incremented (++a) integer local variable number 16 → NO_COVERAGE
9. mainSort : Decremented (--a) integer local variable number 15 → NO_COVERAGE
10. mainSort : Decremented (--a) integer local variable number 16 → NO_COVERAGE
                        quadrant[a2update] = qVal;
1289 21 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Substituted 20 with 21 → NO_COVERAGE
3. mainSort : negated conditional → NO_COVERAGE
4. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
5. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
6. mainSort : Negated integer local variable number 15 → NO_COVERAGE
7. mainSort : Substituted 20 with 1 → NO_COVERAGE
8. mainSort : Substituted 20 with 0 → NO_COVERAGE
9. mainSort : Substituted 20 with -1 → NO_COVERAGE
10. mainSort : Substituted 20 with -20 → NO_COVERAGE
11. mainSort : Substituted 20 with 21 → NO_COVERAGE
12. mainSort : Substituted 20 with 19 → NO_COVERAGE
13. mainSort : greater or equal to less than → NO_COVERAGE
14. mainSort : greater or equal to less or equal → NO_COVERAGE
15. mainSort : greater or equal to greater than → NO_COVERAGE
16. mainSort : greater or equal to equal → NO_COVERAGE
17. mainSort : greater or equal to not equal → NO_COVERAGE
18. mainSort : Incremented (a++) integer local variable number 15 → NO_COVERAGE
19. mainSort : Decremented (a--) integer local variable number 15 → NO_COVERAGE
20. mainSort : Incremented (++a) integer local variable number 15 → NO_COVERAGE
21. mainSort : Decremented (--a) integer local variable number 15 → NO_COVERAGE
                        if (a2update < NUM_OVERSHOOT_BYTES) {
1290 35 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
3. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
4. mainSort : Negated integer local variable number 15 → NO_COVERAGE
5. mainSort : Negated integer field last → NO_COVERAGE
6. mainSort : Negated integer local variable number 16 → NO_COVERAGE
7. mainSort : Replaced integer operation with first member → NO_COVERAGE
8. mainSort : Replaced integer operation with first member → NO_COVERAGE
9. mainSort : Replaced integer operation by second member → NO_COVERAGE
10. mainSort : Replaced integer operation by second member → NO_COVERAGE
11. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
12. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
13. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
14. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
15. mainSort : Replaced integer addition with division → NO_COVERAGE
16. mainSort : Replaced integer addition with division → NO_COVERAGE
17. mainSort : Replaced integer addition with modulus → NO_COVERAGE
18. mainSort : Replaced integer addition with modulus → NO_COVERAGE
19. mainSort : Substituted 1 with 0 → NO_COVERAGE
20. mainSort : Substituted 1 with -1 → NO_COVERAGE
21. mainSort : Substituted 1 with -1 → NO_COVERAGE
22. mainSort : Substituted 1 with 2 → NO_COVERAGE
23. mainSort : Substituted 1 with 0 → NO_COVERAGE
24. mainSort : Incremented (a++) integer local variable number 15 → NO_COVERAGE
25. mainSort : Incremented (a++) integer field last → NO_COVERAGE
26. mainSort : Incremented (a++) integer local variable number 16 → NO_COVERAGE
27. mainSort : Decremented (a--) integer local variable number 15 → NO_COVERAGE
28. mainSort : Decremented (a--) integer field last → NO_COVERAGE
29. mainSort : Decremented (a--) integer local variable number 16 → NO_COVERAGE
30. mainSort : Incremented (++a) integer local variable number 15 → NO_COVERAGE
31. mainSort : Incremented (++a) integer field last → NO_COVERAGE
32. mainSort : Incremented (++a) integer local variable number 16 → NO_COVERAGE
33. mainSort : Decremented (--a) integer local variable number 15 → NO_COVERAGE
34. mainSort : Decremented (--a) integer fieldlast → NO_COVERAGE
35. mainSort : Decremented (--a) integer local variable number 16 → NO_COVERAGE
                            quadrant[a2update + last + 1] = qVal;
1291
                        }
1292
                    }
1293
1294 40 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Substituted 1 with 0 → NO_COVERAGE
3. mainSort : Substituted 65535 with 65536 → NO_COVERAGE
4. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
5. mainSort : Replaced Shift Right with Shift Left → NO_COVERAGE
6. mainSort : negated conditional → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
8. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
9. mainSort : Negated integer local variable number 13 → NO_COVERAGE
10. mainSort : Negated integer local variable number 14 → NO_COVERAGE
11. mainSort : Replaced integer operation with first member → NO_COVERAGE
12. mainSort : Replaced integer operation by second member → NO_COVERAGE
13. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
14. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
15. mainSort : Replaced integer subtraction with division → NO_COVERAGE
16. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
17. mainSort : Substituted 65535 with 1 → NO_COVERAGE
18. mainSort : Substituted 1 with 0 → NO_COVERAGE
19. mainSort : Substituted 65535 with 0 → NO_COVERAGE
20. mainSort : Substituted 1 with -1 → NO_COVERAGE
21. mainSort : Substituted 65535 with -1 → NO_COVERAGE
22. mainSort : Substituted 1 with -1 → NO_COVERAGE
23. mainSort : Substituted 65535 with -65535 → NO_COVERAGE
24. mainSort : Substituted 1 with 2 → NO_COVERAGE
25. mainSort : Substituted 65535 with 65536 → NO_COVERAGE
26. mainSort : Substituted 1 with 0 → NO_COVERAGE
27. mainSort : Substituted 65535 with 65534 → NO_COVERAGE
28. mainSort : Less or equal to less than → NO_COVERAGE
29. mainSort : Less or equal to greater than → NO_COVERAGE
30. mainSort : Less or equal to greater or equal → NO_COVERAGE
31. mainSort : Less or equal to equal → NO_COVERAGE
32. mainSort : Less or equal to not equal → NO_COVERAGE
33. mainSort : Incremented (a++) integer local variable number 13 → NO_COVERAGE
34. mainSort : Incremented (a++) integer local variable number 14 → NO_COVERAGE
35. mainSort : Decremented (a--) integer local variable number 13 → NO_COVERAGE
36. mainSort : Decremented (a--) integer local variable number 14 → NO_COVERAGE
37. mainSort : Incremented (++a) integer local variable number 13 → NO_COVERAGE
38. mainSort : Incremented (++a) integer local variable number 14 → NO_COVERAGE
39. mainSort : Decremented (--a) integer local variable number 13 → NO_COVERAGE
40. mainSort : Decremented (--a) integer local variable number 14 → NO_COVERAGE
                    if (!(((bbSize - 1) >> shifts) <= 65535)) {
1295 1 1. mainSort : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
                        panic();
1296
                    }
1297
                }
1298
1299
                /*
1300
                  Now scan this big bucket so as to synthesise the
1301
                  sorted order for small buckets [t, ss] for all t != ss.
1302
                */
1303 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 255 with 256 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer local variable number 8 → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 255 with 1 → NO_COVERAGE
11. mainSort : Substituted 255 with 0 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : Substituted 255 with -1 → NO_COVERAGE
14. mainSort : Substituted 255 with -255 → NO_COVERAGE
15. mainSort : Substituted 0 with 1 → NO_COVERAGE
16. mainSort : Substituted 255 with 256 → NO_COVERAGE
17. mainSort : Substituted 0 with -1 → NO_COVERAGE
18. mainSort : Substituted 255 with 254 → NO_COVERAGE
19. mainSort : greater than to less than → NO_COVERAGE
20. mainSort : greater than to less or equal → NO_COVERAGE
21. mainSort : greater than to greater or equal → NO_COVERAGE
22. mainSort : greater than to equal → NO_COVERAGE
23. mainSort : greater than to not equal → NO_COVERAGE
24. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
25. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
                for (j = 0; j <= 255; j++) {
1304 46 1. mainSort : Substituted 8 with 9 → NO_COVERAGE
2. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
3. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
6. mainSort : Negated integer local variable number 8 → NO_COVERAGE
7. mainSort : Negated integer local variable number 8 → NO_COVERAGE
8. mainSort : Negated integer local variable number 11 → NO_COVERAGE
9. mainSort : Negated integer array field → NO_COVERAGE
10. mainSort : Replaced integer operation with first member → NO_COVERAGE
11. mainSort : Replaced integer operation by second member → NO_COVERAGE
12. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
13. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
14. mainSort : Replaced integer addition with division → NO_COVERAGE
15. mainSort : Replaced integer addition with modulus → NO_COVERAGE
16. mainSort : Substituted 8 with 1 → NO_COVERAGE
17. mainSort : Substituted -2097153 with 1 → NO_COVERAGE
18. mainSort : Substituted 8 with 0 → NO_COVERAGE
19. mainSort : Substituted -2097153 with 0 → NO_COVERAGE
20. mainSort : Substituted 8 with -1 → NO_COVERAGE
21. mainSort : Substituted -2097153 with -1 → NO_COVERAGE
22. mainSort : Substituted 8 with -8 → NO_COVERAGE
23. mainSort : Substituted -2097153 with 2097153 → NO_COVERAGE
24. mainSort : Substituted 8 with 9 → NO_COVERAGE
25. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
26. mainSort : Substituted 8 with 7 → NO_COVERAGE
27. mainSort : Substituted -2097153 with -2097154 → NO_COVERAGE
28. mainSort : Replaced integer and with or → NO_COVERAGE
29. mainSort : Replaced integer and by first member → NO_COVERAGE
30. mainSort : Replace integer and by second member → NO_COVERAGE
31. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
32. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
33. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
34. mainSort : Incremented (a++) integer array field → NO_COVERAGE
35. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
36. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
37. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
38. mainSort : Decremented (a--) integer array field → NO_COVERAGE
39. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
40. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
41. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
42. mainSort : Incremented (++a) integer array field → NO_COVERAGE
43. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
44. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
45. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
46. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                    copy[j] = ftab[(j << 8) + ss] & CLEARMASK;
1305
                }
1306
1307 29 1. mainSort : Substituted 8 with 9 → NO_COVERAGE
2. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
3. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
4. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
5. mainSort : Negated integer local variable number 11 → NO_COVERAGE
6. mainSort : Negated integer array field → NO_COVERAGE
7. mainSort : Substituted 8 with 1 → NO_COVERAGE
8. mainSort : Substituted -2097153 with 1 → NO_COVERAGE
9. mainSort : Substituted 8 with 0 → NO_COVERAGE
10. mainSort : Substituted -2097153 with 0 → NO_COVERAGE
11. mainSort : Substituted 8 with -1 → NO_COVERAGE
12. mainSort : Substituted -2097153 with -1 → NO_COVERAGE
13. mainSort : Substituted 8 with -8 → NO_COVERAGE
14. mainSort : Substituted -2097153 with 2097153 → NO_COVERAGE
15. mainSort : Substituted 8 with 9 → NO_COVERAGE
16. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
17. mainSort : Substituted 8 with 7 → NO_COVERAGE
18. mainSort : Substituted -2097153 with -2097154 → NO_COVERAGE
19. mainSort : Replaced integer and with or → NO_COVERAGE
20. mainSort : Replaced integer and by first member → NO_COVERAGE
21. mainSort : Replace integer and by second member → NO_COVERAGE
22. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
23. mainSort : Incremented (a++) integer array field → NO_COVERAGE
24. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
25. mainSort : Decremented (a--) integer array field → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
27. mainSort : Incremented (++a) integer array field → NO_COVERAGE
28. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
29. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                for (j = ftab[ss << 8] & CLEARMASK;
1308 58 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 1 with 0 → NO_COVERAGE
4. mainSort : Substituted 8 with 9 → NO_COVERAGE
5. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
6. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
7. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
8. mainSort : Replaced bitwise AND with OR → NO_COVERAGE
9. mainSort : negated conditional → NO_COVERAGE
10. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
11. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
12. mainSort : Removed increment 1 → NO_COVERAGE
13. mainSort : Negated integer local variable number 8 → NO_COVERAGE
14. mainSort : Negated integer local variable number 11 → NO_COVERAGE
15. mainSort : Negated integer array field → NO_COVERAGE
16. mainSort : Replaced integer operation with first member → NO_COVERAGE
17. mainSort : Replaced integer operation by second member → NO_COVERAGE
18. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
19. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
20. mainSort : Replaced integer addition with division → NO_COVERAGE
21. mainSort : Replaced integer addition with modulus → NO_COVERAGE
22. mainSort : Substituted 8 with 1 → NO_COVERAGE
23. mainSort : Substituted -2097153 with 1 → NO_COVERAGE
24. mainSort : Substituted 1 with 0 → NO_COVERAGE
25. mainSort : Substituted 8 with 0 → NO_COVERAGE
26. mainSort : Substituted -2097153 with 0 → NO_COVERAGE
27. mainSort : Substituted 1 with -1 → NO_COVERAGE
28. mainSort : Substituted 8 with -1 → NO_COVERAGE
29. mainSort : Substituted -2097153 with -1 → NO_COVERAGE
30. mainSort : Substituted 1 with -1 → NO_COVERAGE
31. mainSort : Substituted 8 with -8 → NO_COVERAGE
32. mainSort : Substituted -2097153 with 2097153 → NO_COVERAGE
33. mainSort : Substituted 1 with 2 → NO_COVERAGE
34. mainSort : Substituted 8 with 9 → NO_COVERAGE
35. mainSort : Substituted -2097153 with -2097152 → NO_COVERAGE
36. mainSort : Substituted 1 with 0 → NO_COVERAGE
37. mainSort : Substituted 8 with 7 → NO_COVERAGE
38. mainSort : Substituted -2097153 with -2097154 → NO_COVERAGE
39. mainSort : Replaced integer and with or → NO_COVERAGE
40. mainSort : Replaced integer and by first member → NO_COVERAGE
41. mainSort : Replace integer and by second member → NO_COVERAGE
42. mainSort : greater or equal to less than → NO_COVERAGE
43. mainSort : greater or equal to less or equal → NO_COVERAGE
44. mainSort : greater or equal to greater than → NO_COVERAGE
45. mainSort : greater or equal to equal → NO_COVERAGE
46. mainSort : greater or equal to not equal → NO_COVERAGE
47. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
48. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
49. mainSort : Incremented (a++) integer array field → NO_COVERAGE
50. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
51. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
52. mainSort : Decremented (a--) integer array field → NO_COVERAGE
53. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
54. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
55. mainSort : Incremented (++a) integer array field → NO_COVERAGE
56. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
57. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
58. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                     j < (ftab[(ss + 1) << 8] & CLEARMASK); j++) {
1309 10 1. mainSort : Negated integer local variable number 8 → NO_COVERAGE
2. mainSort : Negated integer array field → NO_COVERAGE
3. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
4. mainSort : Incremented (a++) integer array field → NO_COVERAGE
5. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
6. mainSort : Decremented (a--) integer array field → NO_COVERAGE
7. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
8. mainSort : Incremented (++a) integer array field → NO_COVERAGE
9. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
10. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                    c1 = block[zptr[j]];
1310 18 1. mainSort : negated conditional → NO_COVERAGE
2. mainSort : removed conditional - replaced equality check with false → NO_COVERAGE
3. mainSort : removed conditional - replaced equality check with true → NO_COVERAGE
4. mainSort : Negated integer local variable number 6 → NO_COVERAGE
5. mainSort : Negated byte array field → NO_COVERAGE
6. mainSort : not equal to less than → NO_COVERAGE
7. mainSort : not equal to less or equal → NO_COVERAGE
8. mainSort : not equal to greater than → NO_COVERAGE
9. mainSort : not equal to greater or equal → NO_COVERAGE
10. mainSort : not equal to equal → NO_COVERAGE
11. mainSort : Incremented (a++) integer local variable number 8 → NO_COVERAGE
12. mainSort : Incremented (a++) byte array field → NO_COVERAGE
13. mainSort : Decremented (a--) integer local variable number 8 → NO_COVERAGE
14. mainSort : Decremented (a--) byte array field → NO_COVERAGE
15. mainSort : Incremented (++a) integer local variable number 8 → NO_COVERAGE
16. mainSort : Incremented (++a) byte array field → NO_COVERAGE
17. mainSort : Decremented (--a) integer local variable number 8 → NO_COVERAGE
18. mainSort : Decremented (--a) byte array field → NO_COVERAGE
                    if (!bigDone[c1]) {
1311 56 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
3. mainSort : negated conditional → NO_COVERAGE
4. mainSort : removed conditional - replaced equality check with false → NO_COVERAGE
5. mainSort : removed conditional - replaced equality check with true → NO_COVERAGE
6. mainSort : Negated integer local variable number 6 → NO_COVERAGE
7. mainSort : Negated integer array field → NO_COVERAGE
8. mainSort : Negated integer local variable number 8 → NO_COVERAGE
9. mainSort : Negated integer array field → NO_COVERAGE
10. mainSort : Negated integer field last → NO_COVERAGE
11. mainSort : Negated integer local variable number 8 → NO_COVERAGE
12. mainSort : Negated integer array field → NO_COVERAGE
13. mainSort : Replaced integer operation with first member → NO_COVERAGE
14. mainSort : Replaced integer operation by second member → NO_COVERAGE
15. mainSort : Replaced integer subtraction with addition → NO_COVERAGE
16. mainSort : Replaced integer subtraction with multiplication → NO_COVERAGE
17. mainSort : Replaced integer subtraction with division → NO_COVERAGE
18. mainSort : Replaced integer subtraction with modulus → NO_COVERAGE
19. mainSort : Substituted 1 with 0 → NO_COVERAGE
20. mainSort : Substituted 1 with -1 → NO_COVERAGE
21. mainSort : Substituted 1 with -1 → NO_COVERAGE
22. mainSort : Substituted 1 with 2 → NO_COVERAGE
23. mainSort : Substituted 1 with 0 → NO_COVERAGE
24. mainSort : not equal to less than → NO_COVERAGE
25. mainSort : not equal to less or equal → NO_COVERAGE
26. mainSort : not equal to greater than → NO_COVERAGE
27. mainSort : not equal to greater or equal → NO_COVERAGE
28. mainSort : not equal to equal → NO_COVERAGE
29. mainSort : Incremented (a++) integer local variable number 8 → NO_COVERAGE
30. mainSort : Incremented (a++) integer array field → NO_COVERAGE
31. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
32. mainSort : Incremented (a++) integer array field → NO_COVERAGE
33. mainSort : Incremented (a++) integer field last → NO_COVERAGE
34. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
35. mainSort : Incremented (a++) integer array field → NO_COVERAGE
36. mainSort : Decremented (a--) integer local variable number 8 → NO_COVERAGE
37. mainSort : Decremented (a--) integer array field → NO_COVERAGE
38. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
39. mainSort : Decremented (a--) integer array field → NO_COVERAGE
40. mainSort : Decremented (a--) integer field last → NO_COVERAGE
41. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
42. mainSort : Decremented (a--) integer array field → NO_COVERAGE
43. mainSort : Incremented (++a) integer local variable number 8 → NO_COVERAGE
44. mainSort : Incremented (++a) integer array field → NO_COVERAGE
45. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
46. mainSort : Incremented (++a) integer array field → NO_COVERAGE
47. mainSort : Incremented (++a) integer field last → NO_COVERAGE
48. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
49. mainSort : Incremented (++a) integer array field → NO_COVERAGE
50. mainSort : Decremented (--a) integer local variable number 8 → NO_COVERAGE
51. mainSort : Decremented (--a) integer array field → NO_COVERAGE
52. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
53. mainSort : Decremented (--a) integer array field → NO_COVERAGE
54. mainSort : Decremented (--a) integer fieldlast → NO_COVERAGE
55. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
56. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        zptr[copy[c1]] = zptr[j] == 0 ? last : zptr[j] - 1;
1312 23 1. mainSort : Substituted 1 with 0 → NO_COVERAGE
2. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
3. mainSort : Negated integer local variable number 6 → NO_COVERAGE
4. mainSort : Negated integer array field → NO_COVERAGE
5. mainSort : Replaced integer operation with first member → NO_COVERAGE
6. mainSort : Replaced integer operation by second member → NO_COVERAGE
7. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
8. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
9. mainSort : Replaced integer addition with division → NO_COVERAGE
10. mainSort : Replaced integer addition with modulus → NO_COVERAGE
11. mainSort : Substituted 1 with 0 → NO_COVERAGE
12. mainSort : Substituted 1 with -1 → NO_COVERAGE
13. mainSort : Substituted 1 with -1 → NO_COVERAGE
14. mainSort : Substituted 1 with 2 → NO_COVERAGE
15. mainSort : Substituted 1 with 0 → NO_COVERAGE
16. mainSort : Incremented (a++) integer local variable number 8 → NO_COVERAGE
17. mainSort : Incremented (a++) integer array field → NO_COVERAGE
18. mainSort : Decremented (a--) integer local variable number 8 → NO_COVERAGE
19. mainSort : Decremented (a--) integer array field → NO_COVERAGE
20. mainSort : Incremented (++a) integer local variable number 8 → NO_COVERAGE
21. mainSort : Incremented (++a) integer array field → NO_COVERAGE
22. mainSort : Decremented (--a) integer local variable number 8 → NO_COVERAGE
23. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                        copy[c1]++;
1313
                    }
1314
                }
1315
1316 27 1. mainSort : changed conditional boundary → NO_COVERAGE
2. mainSort : Changed increment from 1 to -1 → NO_COVERAGE
3. mainSort : Substituted 0 with 1 → NO_COVERAGE
4. mainSort : Substituted 255 with 256 → NO_COVERAGE
5. mainSort : negated conditional → NO_COVERAGE
6. mainSort : removed conditional - replaced comparison check with false → NO_COVERAGE
7. mainSort : removed conditional - replaced comparison check with true → NO_COVERAGE
8. mainSort : Negated integer local variable number 8 → NO_COVERAGE
9. mainSort : Substituted 0 with 1 → NO_COVERAGE
10. mainSort : Substituted 255 with 1 → NO_COVERAGE
11. mainSort : Substituted 255 with 0 → NO_COVERAGE
12. mainSort : Substituted 0 with -1 → NO_COVERAGE
13. mainSort : Substituted 255 with -1 → NO_COVERAGE
14. mainSort : Substituted 255 with -255 → NO_COVERAGE
15. mainSort : Substituted 0 with 1 → NO_COVERAGE
16. mainSort : Substituted 255 with 256 → NO_COVERAGE
17. mainSort : Substituted 0 with -1 → NO_COVERAGE
18. mainSort : Substituted 255 with 254 → NO_COVERAGE
19. mainSort : greater than to less than → NO_COVERAGE
20. mainSort : greater than to less or equal → NO_COVERAGE
21. mainSort : greater than to greater or equal → NO_COVERAGE
22. mainSort : greater than to equal → NO_COVERAGE
23. mainSort : greater than to not equal → NO_COVERAGE
24. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
25. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
26. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
27. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
                for (j = 0; j <= 255; j++) {
1317 41 1. mainSort : Substituted 8 with 9 → NO_COVERAGE
2. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
3. mainSort : Replaced Shift Left with Shift Right → NO_COVERAGE
4. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
5. mainSort : Replaced bitwise OR with AND → NO_COVERAGE
6. mainSort : Negated integer local variable number 8 → NO_COVERAGE
7. mainSort : Negated integer local variable number 11 → NO_COVERAGE
8. mainSort : Negated integer array field → NO_COVERAGE
9. mainSort : Replaced integer operation with first member → NO_COVERAGE
10. mainSort : Replaced integer operation by second member → NO_COVERAGE
11. mainSort : Replaced integer addition with subtraction → NO_COVERAGE
12. mainSort : Replaced integer addition with multiplication → NO_COVERAGE
13. mainSort : Replaced integer addition with division → NO_COVERAGE
14. mainSort : Replaced integer addition with modulus → NO_COVERAGE
15. mainSort : Substituted 8 with 1 → NO_COVERAGE
16. mainSort : Substituted 2097152 with 1 → NO_COVERAGE
17. mainSort : Substituted 8 with 0 → NO_COVERAGE
18. mainSort : Substituted 2097152 with 0 → NO_COVERAGE
19. mainSort : Substituted 8 with -1 → NO_COVERAGE
20. mainSort : Substituted 2097152 with -1 → NO_COVERAGE
21. mainSort : Substituted 8 with -8 → NO_COVERAGE
22. mainSort : Substituted 2097152 with -2097152 → NO_COVERAGE
23. mainSort : Substituted 8 with 9 → NO_COVERAGE
24. mainSort : Substituted 2097152 with 2097153 → NO_COVERAGE
25. mainSort : Substituted 8 with 7 → NO_COVERAGE
26. mainSort : Substituted 2097152 with 2097151 → NO_COVERAGE
27. mainSort : Replaced integer or with and → NO_COVERAGE
28. mainSort : Replaced integer or by first member → NO_COVERAGE
29. mainSort : Replace integer or by second member → NO_COVERAGE
30. mainSort : Incremented (a++) integer local variable number 2 → NO_COVERAGE
31. mainSort : Incremented (a++) integer local variable number 3 → NO_COVERAGE
32. mainSort : Incremented (a++) integer array field → NO_COVERAGE
33. mainSort : Decremented (a--) integer local variable number 2 → NO_COVERAGE
34. mainSort : Decremented (a--) integer local variable number 3 → NO_COVERAGE
35. mainSort : Decremented (a--) integer array field → NO_COVERAGE
36. mainSort : Incremented (++a) integer local variable number 2 → NO_COVERAGE
37. mainSort : Incremented (++a) integer local variable number 3 → NO_COVERAGE
38. mainSort : Incremented (++a) integer array field → NO_COVERAGE
39. mainSort : Decremented (--a) integer local variable number 2 → NO_COVERAGE
40. mainSort : Decremented (--a) integer local variable number 3 → NO_COVERAGE
41. mainSort : Decremented (--a) integer array field → NO_COVERAGE
                    ftab[(j << 8) + ss] |= SETMASK;
1318
                }
1319
            }
1320
        }
1321
    }
1322
1323
    private void randomiseBlock() {
1324
        int i;
1325 5 1. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
2. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
3. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
4. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
5. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
        int rNToGo = 0;
1326 5 1. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
2. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
3. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
4. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
5. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
        int rTPos  = 0;
1327 27 1. randomiseBlock : changed conditional boundary → NO_COVERAGE
2. randomiseBlock : Changed increment from 1 to -1 → NO_COVERAGE
3. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
4. randomiseBlock : Substituted 256 with 257 → NO_COVERAGE
5. randomiseBlock : negated conditional → NO_COVERAGE
6. randomiseBlock : removed conditional - replaced comparison check with false → NO_COVERAGE
7. randomiseBlock : removed conditional - replaced comparison check with true → NO_COVERAGE
8. randomiseBlock : Negated integer local variable number 3 → NO_COVERAGE
9. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
10. randomiseBlock : Substituted 256 with 1 → NO_COVERAGE
11. randomiseBlock : Substituted 256 with 0 → NO_COVERAGE
12. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
13. randomiseBlock : Substituted 256 with -1 → NO_COVERAGE
14. randomiseBlock : Substituted 256 with -256 → NO_COVERAGE
15. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
16. randomiseBlock : Substituted 256 with 257 → NO_COVERAGE
17. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
18. randomiseBlock : Substituted 256 with 255 → NO_COVERAGE
19. randomiseBlock : greater or equal to less than → NO_COVERAGE
20. randomiseBlock : greater or equal to less or equal → NO_COVERAGE
21. randomiseBlock : greater or equal to greater than → NO_COVERAGE
22. randomiseBlock : greater or equal to equal → NO_COVERAGE
23. randomiseBlock : greater or equal to not equal → NO_COVERAGE
24. randomiseBlock : Incremented (a++) integer local variable number 1 → NO_COVERAGE
25. randomiseBlock : Decremented (a--) integer local variable number 1 → NO_COVERAGE
26. randomiseBlock : Incremented (++a) integer local variable number 1 → NO_COVERAGE
27. randomiseBlock : Decremented (--a) integer local variable number 1 → NO_COVERAGE
        for (i = 0; i < 256; i++) {
1328 10 1. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
2. randomiseBlock : Negated integer local variable number 3 → NO_COVERAGE
3. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
4. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
5. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
6. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
7. randomiseBlock : Incremented (a++) integer local variable number 1 → NO_COVERAGE
8. randomiseBlock : Decremented (a--) integer local variable number 1 → NO_COVERAGE
9. randomiseBlock : Incremented (++a) integer local variable number 1 → NO_COVERAGE
10. randomiseBlock : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            inUse[i] = false;
1329
        }
1330
1331 26 1. randomiseBlock : changed conditional boundary → NO_COVERAGE
2. randomiseBlock : Changed increment from 1 to -1 → NO_COVERAGE
3. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
4. randomiseBlock : negated conditional → NO_COVERAGE
5. randomiseBlock : removed conditional - replaced comparison check with false → NO_COVERAGE
6. randomiseBlock : removed conditional - replaced comparison check with true → NO_COVERAGE
7. randomiseBlock : Removed increment 1 → NO_COVERAGE
8. randomiseBlock : Negated integer local variable number 3 → NO_COVERAGE
9. randomiseBlock : Negated integer field last → NO_COVERAGE
10. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
11. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
12. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
13. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
14. randomiseBlock : greater than to less than → NO_COVERAGE
15. randomiseBlock : greater than to less or equal → NO_COVERAGE
16. randomiseBlock : greater than to greater or equal → NO_COVERAGE
17. randomiseBlock : greater than to equal → NO_COVERAGE
18. randomiseBlock : greater than to not equal → NO_COVERAGE
19. randomiseBlock : Incremented (a++) integer local variable number 1 → NO_COVERAGE
20. randomiseBlock : Incremented (a++) integer field last → NO_COVERAGE
21. randomiseBlock : Decremented (a--) integer local variable number 1 → NO_COVERAGE
22. randomiseBlock : Decremented (a--) integer field last → NO_COVERAGE
23. randomiseBlock : Incremented (++a) integer local variable number 1 → NO_COVERAGE
24. randomiseBlock : Incremented (++a) integer field last → NO_COVERAGE
25. randomiseBlock : Decremented (--a) integer local variable number 1 → NO_COVERAGE
26. randomiseBlock : Decremented (--a) integer fieldlast → NO_COVERAGE
        for (i = 0; i <= last; i++) {
1332 13 1. randomiseBlock : negated conditional → NO_COVERAGE
2. randomiseBlock : removed conditional - replaced equality check with false → NO_COVERAGE
3. randomiseBlock : removed conditional - replaced equality check with true → NO_COVERAGE
4. randomiseBlock : Negated integer local variable number 1 → NO_COVERAGE
5. randomiseBlock : not equal to less than → NO_COVERAGE
6. randomiseBlock : not equal to less or equal → NO_COVERAGE
7. randomiseBlock : not equal to greater than → NO_COVERAGE
8. randomiseBlock : not equal to greater or equal → NO_COVERAGE
9. randomiseBlock : not equal to equal → NO_COVERAGE
10. randomiseBlock : Incremented (a++) integer local variable number 2 → NO_COVERAGE
11. randomiseBlock : Decremented (a--) integer local variable number 2 → NO_COVERAGE
12. randomiseBlock : Incremented (++a) integer local variable number 2 → NO_COVERAGE
13. randomiseBlock : Decremented (--a) integer local variable number 2 → NO_COVERAGE
            if (rNToGo == 0) {
1333 10 1. randomiseBlock : Negated integer local variable number 2 → NO_COVERAGE
2. randomiseBlock : Negated integer array field → NO_COVERAGE
3. randomiseBlock : Incremented (a++) integer local variable number 3 → NO_COVERAGE
4. randomiseBlock : Incremented (a++) integer array field → NO_COVERAGE
5. randomiseBlock : Decremented (a--) integer local variable number 3 → NO_COVERAGE
6. randomiseBlock : Decremented (a--) integer array field → NO_COVERAGE
7. randomiseBlock : Incremented (++a) integer local variable number 3 → NO_COVERAGE
8. randomiseBlock : Incremented (++a) integer array field → NO_COVERAGE
9. randomiseBlock : Decremented (--a) integer local variable number 3 → NO_COVERAGE
10. randomiseBlock : Decremented (--a) integer array field → NO_COVERAGE
                rNToGo = (char) rNums[rTPos];
1334 2 1. randomiseBlock : Changed increment from 1 to -1 → NO_COVERAGE
2. randomiseBlock : Removed increment 1 → NO_COVERAGE
                rTPos++;
1335 20 1. randomiseBlock : Substituted 512 with 513 → NO_COVERAGE
2. randomiseBlock : negated conditional → NO_COVERAGE
3. randomiseBlock : removed conditional - replaced equality check with false → NO_COVERAGE
4. randomiseBlock : removed conditional - replaced equality check with true → NO_COVERAGE
5. randomiseBlock : Negated integer local variable number 2 → NO_COVERAGE
6. randomiseBlock : Substituted 512 with 1 → NO_COVERAGE
7. randomiseBlock : Substituted 512 with 0 → NO_COVERAGE
8. randomiseBlock : Substituted 512 with -1 → NO_COVERAGE
9. randomiseBlock : Substituted 512 with -512 → NO_COVERAGE
10. randomiseBlock : Substituted 512 with 513 → NO_COVERAGE
11. randomiseBlock : Substituted 512 with 511 → NO_COVERAGE
12. randomiseBlock : not equal to less than → NO_COVERAGE
13. randomiseBlock : not equal to less or equal → NO_COVERAGE
14. randomiseBlock : not equal to greater than → NO_COVERAGE
15. randomiseBlock : not equal to greater or equal → NO_COVERAGE
16. randomiseBlock : not equal to equal → NO_COVERAGE
17. randomiseBlock : Incremented (a++) integer local variable number 3 → NO_COVERAGE
18. randomiseBlock : Decremented (a--) integer local variable number 3 → NO_COVERAGE
19. randomiseBlock : Incremented (++a) integer local variable number 3 → NO_COVERAGE
20. randomiseBlock : Decremented (--a) integer local variable number 3 → NO_COVERAGE
                if (rTPos == 512) {
1336 5 1. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
2. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
3. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
4. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
5. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
                    rTPos = 0;
1337
                }
1338
            }
1339 2 1. randomiseBlock : Changed increment from -1 to 1 → NO_COVERAGE
2. randomiseBlock : Removed increment -1 → NO_COVERAGE
            rNToGo--;
1340 49 1. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
2. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
3. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
4. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
5. randomiseBlock : Replaced integer addition with subtraction → NO_COVERAGE
6. randomiseBlock : Replaced XOR with AND → NO_COVERAGE
7. randomiseBlock : negated conditional → NO_COVERAGE
8. randomiseBlock : removed conditional - replaced equality check with false → NO_COVERAGE
9. randomiseBlock : removed conditional - replaced equality check with true → NO_COVERAGE
10. randomiseBlock : Negated integer local variable number 3 → NO_COVERAGE
11. randomiseBlock : Negated integer local variable number 1 → NO_COVERAGE
12. randomiseBlock : Replaced integer operation with first member → NO_COVERAGE
13. randomiseBlock : Replaced integer operation by second member → NO_COVERAGE
14. randomiseBlock : Replaced integer addition with subtraction → NO_COVERAGE
15. randomiseBlock : Replaced integer addition with multiplication → NO_COVERAGE
16. randomiseBlock : Replaced integer addition with division → NO_COVERAGE
17. randomiseBlock : Replaced integer addition with modulus → NO_COVERAGE
18. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
19. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
20. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
21. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
22. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
23. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
24. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
25. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
26. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
27. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
28. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
29. randomiseBlock : Substituted 1 with 2 → NO_COVERAGE
30. randomiseBlock : Substituted 1 with 2 → NO_COVERAGE
31. randomiseBlock : Substituted 1 with 2 → NO_COVERAGE
32. randomiseBlock : Substituted 0 with 1 → NO_COVERAGE
33. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
34. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
35. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
36. randomiseBlock : Substituted 0 with -1 → NO_COVERAGE
37. randomiseBlock : not equal to less than → NO_COVERAGE
38. randomiseBlock : not equal to less or equal → NO_COVERAGE
39. randomiseBlock : not equal to greater than → NO_COVERAGE
40. randomiseBlock : not equal to greater or equal → NO_COVERAGE
41. randomiseBlock : not equal to equal → NO_COVERAGE
42. randomiseBlock : Incremented (a++) integer local variable number 1 → NO_COVERAGE
43. randomiseBlock : Incremented (a++) integer local variable number 2 → NO_COVERAGE
44. randomiseBlock : Decremented (a--) integer local variable number 1 → NO_COVERAGE
45. randomiseBlock : Decremented (a--) integer local variable number 2 → NO_COVERAGE
46. randomiseBlock : Incremented (++a) integer local variable number 1 → NO_COVERAGE
47. randomiseBlock : Incremented (++a) integer local variable number 2 → NO_COVERAGE
48. randomiseBlock : Decremented (--a) integer local variable number 1 → NO_COVERAGE
49. randomiseBlock : Decremented (--a) integer local variable number 2 → NO_COVERAGE
            block[i + 1] ^= ((rNToGo == 1) ? 1 : 0);
1341
            // handle 16 bit signed numbers
1342 29 1. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
2. randomiseBlock : Substituted 255 with 256 → NO_COVERAGE
3. randomiseBlock : Replaced integer addition with subtraction → NO_COVERAGE
4. randomiseBlock : Replaced bitwise AND with OR → NO_COVERAGE
5. randomiseBlock : Negated integer local variable number 3 → NO_COVERAGE
6. randomiseBlock : Replaced integer operation with first member → NO_COVERAGE
7. randomiseBlock : Replaced integer operation by second member → NO_COVERAGE
8. randomiseBlock : Replaced integer addition with subtraction → NO_COVERAGE
9. randomiseBlock : Replaced integer addition with multiplication → NO_COVERAGE
10. randomiseBlock : Replaced integer addition with division → NO_COVERAGE
11. randomiseBlock : Replaced integer addition with modulus → NO_COVERAGE
12. randomiseBlock : Substituted 255 with 1 → NO_COVERAGE
13. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
14. randomiseBlock : Substituted 255 with 0 → NO_COVERAGE
15. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
16. randomiseBlock : Substituted 255 with -1 → NO_COVERAGE
17. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
18. randomiseBlock : Substituted 255 with -255 → NO_COVERAGE
19. randomiseBlock : Substituted 1 with 2 → NO_COVERAGE
20. randomiseBlock : Substituted 255 with 256 → NO_COVERAGE
21. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
22. randomiseBlock : Substituted 255 with 254 → NO_COVERAGE
23. randomiseBlock : Replaced integer and with or → NO_COVERAGE
24. randomiseBlock : Replaced integer and by first member → NO_COVERAGE
25. randomiseBlock : Replace integer and by second member → NO_COVERAGE
26. randomiseBlock : Incremented (a++) integer local variable number 1 → NO_COVERAGE
27. randomiseBlock : Decremented (a--) integer local variable number 1 → NO_COVERAGE
28. randomiseBlock : Incremented (++a) integer local variable number 1 → NO_COVERAGE
29. randomiseBlock : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            block[i + 1] &= 0xFF;
1343
1344 24 1. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
2. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
3. randomiseBlock : Replaced integer addition with subtraction → NO_COVERAGE
4. randomiseBlock : Negated integer local variable number 3 → NO_COVERAGE
5. randomiseBlock : Replaced integer operation with first member → NO_COVERAGE
6. randomiseBlock : Replaced integer operation by second member → NO_COVERAGE
7. randomiseBlock : Replaced integer addition with subtraction → NO_COVERAGE
8. randomiseBlock : Replaced integer addition with multiplication → NO_COVERAGE
9. randomiseBlock : Replaced integer addition with division → NO_COVERAGE
10. randomiseBlock : Replaced integer addition with modulus → NO_COVERAGE
11. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
12. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
13. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
14. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
15. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
16. randomiseBlock : Substituted 1 with -1 → NO_COVERAGE
17. randomiseBlock : Substituted 1 with 2 → NO_COVERAGE
18. randomiseBlock : Substituted 1 with 2 → NO_COVERAGE
19. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
20. randomiseBlock : Substituted 1 with 0 → NO_COVERAGE
21. randomiseBlock : Incremented (a++) integer local variable number 1 → NO_COVERAGE
22. randomiseBlock : Decremented (a--) integer local variable number 1 → NO_COVERAGE
23. randomiseBlock : Incremented (++a) integer local variable number 1 → NO_COVERAGE
24. randomiseBlock : Decremented (--a) integer local variable number 1 → NO_COVERAGE
            inUse[block[i + 1]] = true;
1345
        }
1346
    }
1347
1348
    private void doReversibleTransformation() {
1349
        int i;
1350
1351 18 1. doReversibleTransformation : Replaced integer multiplication with division → SURVIVED
2. doReversibleTransformation : Removed assignment to member variable workLimit → SURVIVED
3. doReversibleTransformation : Negated integer field workFactor → SURVIVED
4. doReversibleTransformation : Negated integer field last → SURVIVED
5. doReversibleTransformation : Replaced integer operation with first member → SURVIVED
6. doReversibleTransformation : Replaced integer operation by second member → SURVIVED
7. doReversibleTransformation : Replaced integer multiplication with division → SURVIVED
8. doReversibleTransformation : Replaced integer multiplication with modulus → SURVIVED
9. doReversibleTransformation : Replaced integer multiplication with addition → SURVIVED
10. doReversibleTransformation : Replaced integer multiplication with subtraction → SURVIVED
11. doReversibleTransformation : Incremented (a++) integer field workFactor → SURVIVED
12. doReversibleTransformation : Incremented (a++) integer field last → SURVIVED
13. doReversibleTransformation : Decremented (a--) integer field workFactor → SURVIVED
14. doReversibleTransformation : Decremented (a--) integer field last → SURVIVED
15. doReversibleTransformation : Incremented (++a) integer field workFactor → SURVIVED
16. doReversibleTransformation : Incremented (++a) integer field last → SURVIVED
17. doReversibleTransformation : Decremented (--a) integer fieldworkFactor → SURVIVED
18. doReversibleTransformation : Decremented (--a) integer fieldlast → SURVIVED
        workLimit = workFactor * last;
1352 6 1. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
2. doReversibleTransformation : Removed assignment to member variable workDone → SURVIVED
3. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
4. doReversibleTransformation : Substituted 0 with -1 → SURVIVED
5. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
6. doReversibleTransformation : Substituted 0 with -1 → SURVIVED
        workDone = 0;
1353 6 1. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
2. doReversibleTransformation : Removed assignment to member variable blockRandomised → SURVIVED
3. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
4. doReversibleTransformation : Substituted 0 with -1 → SURVIVED
5. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
6. doReversibleTransformation : Substituted 0 with -1 → SURVIVED
        blockRandomised = false;
1354 7 1. doReversibleTransformation : Substituted 1 with 0 → SURVIVED
2. doReversibleTransformation : Removed assignment to member variable firstAttempt → SURVIVED
3. doReversibleTransformation : Substituted 1 with 0 → SURVIVED
4. doReversibleTransformation : Substituted 1 with -1 → SURVIVED
5. doReversibleTransformation : Substituted 1 with -1 → SURVIVED
6. doReversibleTransformation : Substituted 1 with 2 → SURVIVED
7. doReversibleTransformation : Substituted 1 with 0 → SURVIVED
        firstAttempt = true;
1355
1356 1 1. doReversibleTransformation : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::mainSort → SURVIVED
        mainSort();
1357
1358 27 1. doReversibleTransformation : changed conditional boundary → SURVIVED
2. doReversibleTransformation : negated conditional → SURVIVED
3. doReversibleTransformation : negated conditional → SURVIVED
4. doReversibleTransformation : removed conditional - replaced equality check with false → SURVIVED
5. doReversibleTransformation : removed conditional - replaced equality check with true → SURVIVED
6. doReversibleTransformation : removed conditional - replaced comparison check with false → SURVIVED
7. doReversibleTransformation : removed conditional - replaced comparison check with true → SURVIVED
8. doReversibleTransformation : Negated integer field workDone → SURVIVED
9. doReversibleTransformation : Negated integer field workLimit → SURVIVED
10. doReversibleTransformation : Less or equal to less than → SURVIVED
11. doReversibleTransformation : equal to less than → SURVIVED
12. doReversibleTransformation : Less or equal to greater than → SURVIVED
13. doReversibleTransformation : equal to less or equal → SURVIVED
14. doReversibleTransformation : Less or equal to greater or equal → SURVIVED
15. doReversibleTransformation : equal to greater than → SURVIVED
16. doReversibleTransformation : Less or equal to equal → SURVIVED
17. doReversibleTransformation : equal to greater or equal → SURVIVED
18. doReversibleTransformation : Less or equal to not equal → SURVIVED
19. doReversibleTransformation : equal to not equal → SURVIVED
20. doReversibleTransformation : Incremented (a++) integer field workDone → SURVIVED
21. doReversibleTransformation : Incremented (a++) integer field workLimit → SURVIVED
22. doReversibleTransformation : Decremented (a--) integer field workDone → SURVIVED
23. doReversibleTransformation : Decremented (a--) integer field workLimit → SURVIVED
24. doReversibleTransformation : Incremented (++a) integer field workDone → SURVIVED
25. doReversibleTransformation : Incremented (++a) integer field workLimit → SURVIVED
26. doReversibleTransformation : Decremented (--a) integer fieldworkDone → SURVIVED
27. doReversibleTransformation : Decremented (--a) integer fieldworkLimit → SURVIVED
        if (workDone > workLimit && firstAttempt) {
1359 1 1. doReversibleTransformation : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::randomiseBlock → NO_COVERAGE
            randomiseBlock();
1360 7 1. doReversibleTransformation : Substituted 0 with 1 → NO_COVERAGE
2. doReversibleTransformation : Removed assignment to member variable workDone → NO_COVERAGE
3. doReversibleTransformation : Removed assignment to member variable workLimit → NO_COVERAGE
4. doReversibleTransformation : Substituted 0 with 1 → NO_COVERAGE
5. doReversibleTransformation : Substituted 0 with -1 → NO_COVERAGE
6. doReversibleTransformation : Substituted 0 with 1 → NO_COVERAGE
7. doReversibleTransformation : Substituted 0 with -1 → NO_COVERAGE
            workLimit = workDone = 0;
1361 7 1. doReversibleTransformation : Substituted 1 with 0 → NO_COVERAGE
2. doReversibleTransformation : Removed assignment to member variable blockRandomised → NO_COVERAGE
3. doReversibleTransformation : Substituted 1 with 0 → NO_COVERAGE
4. doReversibleTransformation : Substituted 1 with -1 → NO_COVERAGE
5. doReversibleTransformation : Substituted 1 with -1 → NO_COVERAGE
6. doReversibleTransformation : Substituted 1 with 2 → NO_COVERAGE
7. doReversibleTransformation : Substituted 1 with 0 → NO_COVERAGE
            blockRandomised = true;
1362 6 1. doReversibleTransformation : Substituted 0 with 1 → NO_COVERAGE
2. doReversibleTransformation : Removed assignment to member variable firstAttempt → NO_COVERAGE
3. doReversibleTransformation : Substituted 0 with 1 → NO_COVERAGE
4. doReversibleTransformation : Substituted 0 with -1 → NO_COVERAGE
5. doReversibleTransformation : Substituted 0 with 1 → NO_COVERAGE
6. doReversibleTransformation : Substituted 0 with -1 → NO_COVERAGE
            firstAttempt = false;
1363 1 1. doReversibleTransformation : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::mainSort → NO_COVERAGE
            mainSort();
1364
        }
1365
1366 7 1. doReversibleTransformation : Substituted -1 with 0 → SURVIVED
2. doReversibleTransformation : Removed assignment to member variable origPtr → SURVIVED
3. doReversibleTransformation : Substituted -1 with 1 → SURVIVED
4. doReversibleTransformation : Substituted -1 with 0 → SURVIVED
5. doReversibleTransformation : Substituted -1 with 1 → SURVIVED
6. doReversibleTransformation : Substituted -1 with 0 → SURVIVED
7. doReversibleTransformation : Substituted -1 with -2 → SURVIVED
        origPtr = -1;
1367 25 1. doReversibleTransformation : changed conditional boundary → SURVIVED
2. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
3. doReversibleTransformation : negated conditional → SURVIVED
4. doReversibleTransformation : removed conditional - replaced comparison check with false → SURVIVED
5. doReversibleTransformation : removed conditional - replaced comparison check with true → SURVIVED
6. doReversibleTransformation : Negated integer local variable number 1 → SURVIVED
7. doReversibleTransformation : Negated integer field last → SURVIVED
8. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
9. doReversibleTransformation : Substituted 0 with 1 → SURVIVED
10. doReversibleTransformation : greater than to less than → SURVIVED
11. doReversibleTransformation : greater than to less or equal → SURVIVED
12. doReversibleTransformation : greater than to greater or equal → SURVIVED
13. doReversibleTransformation : greater than to equal → SURVIVED
14. doReversibleTransformation : greater than to not equal → SURVIVED
15. doReversibleTransformation : Incremented (a++) integer local variable number 1 → SURVIVED
16. doReversibleTransformation : Incremented (a++) integer field last → SURVIVED
17. doReversibleTransformation : Decremented (a--) integer field last → SURVIVED
18. doReversibleTransformation : Incremented (++a) integer local variable number 1 → SURVIVED
19. doReversibleTransformation : Incremented (++a) integer field last → SURVIVED
20. doReversibleTransformation : Decremented (--a) integer fieldlast → SURVIVED
21. doReversibleTransformation : Changed increment from 1 to -1 → KILLED
22. doReversibleTransformation : Substituted 0 with -1 → KILLED
23. doReversibleTransformation : Substituted 0 with -1 → KILLED
24. doReversibleTransformation : Decremented (a--) integer local variable number 1 → KILLED
25. doReversibleTransformation : Decremented (--a) integer local variable number 1 → KILLED
        for (i = 0; i <= last; i++) {
1368 18 1. doReversibleTransformation : negated conditional → SURVIVED
2. doReversibleTransformation : removed conditional - replaced equality check with false → SURVIVED
3. doReversibleTransformation : removed conditional - replaced equality check with true → SURVIVED
4. doReversibleTransformation : Negated integer array field → SURVIVED
5. doReversibleTransformation : not equal to less than → SURVIVED
6. doReversibleTransformation : not equal to less or equal → SURVIVED
7. doReversibleTransformation : not equal to greater than → SURVIVED
8. doReversibleTransformation : not equal to greater or equal → SURVIVED
9. doReversibleTransformation : not equal to equal → SURVIVED
10. doReversibleTransformation : Incremented (a++) integer local variable number 1 → SURVIVED
11. doReversibleTransformation : Incremented (a++) integer array field → SURVIVED
12. doReversibleTransformation : Incremented (++a) integer local variable number 1 → SURVIVED
13. doReversibleTransformation : Incremented (++a) integer array field → SURVIVED
14. doReversibleTransformation : Decremented (--a) integer array field → SURVIVED
15. doReversibleTransformation : Decremented (a--) integer local variable number 1 → TIMED_OUT
16. doReversibleTransformation : Negated integer local variable number 1 → KILLED
17. doReversibleTransformation : Decremented (a--) integer array field → KILLED
18. doReversibleTransformation : Decremented (--a) integer local variable number 1 → KILLED
            if (zptr[i] == 0) {
1369 6 1. doReversibleTransformation : Removed assignment to member variable origPtr → SURVIVED
2. doReversibleTransformation : Negated integer local variable number 1 → SURVIVED
3. doReversibleTransformation : Incremented (a++) integer local variable number 1 → SURVIVED
4. doReversibleTransformation : Decremented (a--) integer local variable number 1 → SURVIVED
5. doReversibleTransformation : Incremented (++a) integer local variable number 1 → SURVIVED
6. doReversibleTransformation : Decremented (--a) integer local variable number 1 → SURVIVED
                origPtr = i;
1370
                break;
1371
            }
1372
        }
1373
1374 19 1. doReversibleTransformation : Substituted -1 with 0 → SURVIVED
2. doReversibleTransformation : negated conditional → SURVIVED
3. doReversibleTransformation : removed conditional - replaced equality check with false → SURVIVED
4. doReversibleTransformation : removed conditional - replaced equality check with true → SURVIVED
5. doReversibleTransformation : Negated integer field origPtr → SURVIVED
6. doReversibleTransformation : Substituted -1 with 1 → SURVIVED
7. doReversibleTransformation : Substituted -1 with 0 → SURVIVED
8. doReversibleTransformation : Substituted -1 with 1 → SURVIVED
9. doReversibleTransformation : Substituted -1 with 0 → SURVIVED
10. doReversibleTransformation : Substituted -1 with -2 → SURVIVED
11. doReversibleTransformation : not equal to less than → SURVIVED
12. doReversibleTransformation : not equal to less or equal → SURVIVED
13. doReversibleTransformation : not equal to greater than → SURVIVED
14. doReversibleTransformation : not equal to greater or equal → SURVIVED
15. doReversibleTransformation : not equal to equal → SURVIVED
16. doReversibleTransformation : Incremented (a++) integer field origPtr → SURVIVED
17. doReversibleTransformation : Decremented (a--) integer field origPtr → SURVIVED
18. doReversibleTransformation : Incremented (++a) integer field origPtr → SURVIVED
19. doReversibleTransformation : Decremented (--a) integer fieldorigPtr → SURVIVED
        if (origPtr == -1) {
1375 1 1. doReversibleTransformation : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE
            panic();
1376
        }
1377
    }
1378
1379
    private boolean fullGtU(int i1, int i2) {
1380
        int k;
1381
        char c1, c2;
1382
        int s1, s2;
1383
1384 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer operation with first member → SURVIVED
3. fullGtU : Replaced integer operation by second member → SURVIVED
4. fullGtU : Replaced integer addition with multiplication → SURVIVED
5. fullGtU : Replaced integer addition with division → SURVIVED
6. fullGtU : Replaced integer addition with modulus → SURVIVED
7. fullGtU : Substituted 1 with 0 → SURVIVED
8. fullGtU : Substituted 1 with 2 → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
11. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
12. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
13. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
14. fullGtU : Replaced integer addition with subtraction → KILLED
15. fullGtU : Negated integer local variable number 1 → KILLED
16. fullGtU : Replaced integer addition with subtraction → KILLED
17. fullGtU : Substituted 1 with -1 → KILLED
18. fullGtU : Substituted 1 with -1 → KILLED
        c1 = block[i1 + 1];
1385 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer operation with first member → SURVIVED
3. fullGtU : Replaced integer operation by second member → SURVIVED
4. fullGtU : Replaced integer addition with multiplication → SURVIVED
5. fullGtU : Replaced integer addition with division → SURVIVED
6. fullGtU : Replaced integer addition with modulus → SURVIVED
7. fullGtU : Substituted 1 with 0 → SURVIVED
8. fullGtU : Substituted 1 with 2 → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
11. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
12. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
13. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
14. fullGtU : Replaced integer addition with subtraction → KILLED
15. fullGtU : Negated integer local variable number 2 → KILLED
16. fullGtU : Replaced integer addition with subtraction → KILLED
17. fullGtU : Substituted 1 with -1 → KILLED
18. fullGtU : Substituted 1 with -1 → KILLED
        c2 = block[i2 + 1];
1386 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
        if (c1 != c2) {
1387 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            return (c1 > c2);
1388
        }
1389 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i1++;
1390 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i2++;
1391
1392 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
        c1 = block[i1 + 1];
1393 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
        c2 = block[i2 + 1];
1394 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
        if (c1 != c2) {
1395 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            return (c1 > c2);
1396
        }
1397 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i1++;
1398 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i2++;
1399
1400 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
        c1 = block[i1 + 1];
1401 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
        c2 = block[i2 + 1];
1402 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
        if (c1 != c2) {
1403 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            return (c1 > c2);
1404
        }
1405 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i1++;
1406 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i2++;
1407
1408 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
        c1 = block[i1 + 1];
1409 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
        c2 = block[i2 + 1];
1410 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
        if (c1 != c2) {
1411 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            return (c1 > c2);
1412
        }
1413 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i1++;
1414 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i2++;
1415
1416 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
        c1 = block[i1 + 1];
1417 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
        c2 = block[i2 + 1];
1418 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
        if (c1 != c2) {
1419 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            return (c1 > c2);
1420
        }
1421 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i1++;
1422 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i2++;
1423
1424 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
        c1 = block[i1 + 1];
1425 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
        c2 = block[i2 + 1];
1426 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
        if (c1 != c2) {
1427 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            return (c1 > c2);
1428
        }
1429 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i1++;
1430 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
        i2++;
1431
1432 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Negated integer field last → SURVIVED
4. fullGtU : Replaced integer operation with first member → SURVIVED
5. fullGtU : Replaced integer operation by second member → SURVIVED
6. fullGtU : Replaced integer addition with subtraction → SURVIVED
7. fullGtU : Replaced integer addition with multiplication → SURVIVED
8. fullGtU : Replaced integer addition with division → SURVIVED
9. fullGtU : Replaced integer addition with modulus → SURVIVED
10. fullGtU : Substituted 1 with 0 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with -1 → SURVIVED
13. fullGtU : Substituted 1 with 2 → SURVIVED
14. fullGtU : Substituted 1 with 0 → SURVIVED
15. fullGtU : Incremented (a++) integer field last → SURVIVED
16. fullGtU : Decremented (a--) integer field last → SURVIVED
17. fullGtU : Incremented (++a) integer field last → SURVIVED
18. fullGtU : Decremented (--a) integer fieldlast → SURVIVED
        k = last + 1;
1433
1434
        do {
1435 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer operation with first member → SURVIVED
3. fullGtU : Replaced integer operation by second member → SURVIVED
4. fullGtU : Replaced integer addition with multiplication → SURVIVED
5. fullGtU : Replaced integer addition with division → SURVIVED
6. fullGtU : Replaced integer addition with modulus → SURVIVED
7. fullGtU : Substituted 1 with 0 → SURVIVED
8. fullGtU : Substituted 1 with 2 → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
11. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
12. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
13. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
14. fullGtU : Replaced integer addition with subtraction → KILLED
15. fullGtU : Negated integer local variable number 1 → KILLED
16. fullGtU : Replaced integer addition with subtraction → KILLED
17. fullGtU : Substituted 1 with -1 → KILLED
18. fullGtU : Substituted 1 with -1 → KILLED
            c1 = block[i1 + 1];
1436 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer operation with first member → SURVIVED
3. fullGtU : Replaced integer operation by second member → SURVIVED
4. fullGtU : Replaced integer addition with multiplication → SURVIVED
5. fullGtU : Replaced integer addition with division → SURVIVED
6. fullGtU : Replaced integer addition with modulus → SURVIVED
7. fullGtU : Substituted 1 with 0 → SURVIVED
8. fullGtU : Substituted 1 with 2 → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
11. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
12. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
13. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
14. fullGtU : Replaced integer addition with subtraction → KILLED
15. fullGtU : Negated integer local variable number 2 → KILLED
16. fullGtU : Replaced integer addition with subtraction → KILLED
17. fullGtU : Substituted 1 with -1 → KILLED
18. fullGtU : Substituted 1 with -1 → KILLED
            c2 = block[i2 + 1];
1437 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            if (c1 != c2) {
1438 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
                return (c1 > c2);
1439
            }
1440 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 1 → KILLED
            s1 = quadrant[i1];
1441 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 2 → KILLED
            s2 = quadrant[i2];
1442 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 6 → SURVIVED
5. fullGtU : Negated integer local variable number 7 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 6 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 7 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 6 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 7 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 6 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 7 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 6 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 7 → SURVIVED
            if (s1 != s2) {
1443 32 1. fullGtU : changed conditional boundary → NO_COVERAGE
2. fullGtU : Substituted 1 with 0 → NO_COVERAGE
3. fullGtU : Substituted 0 with 1 → NO_COVERAGE
4. fullGtU : negated conditional → NO_COVERAGE
5. fullGtU : removed conditional - replaced comparison check with false → NO_COVERAGE
6. fullGtU : removed conditional - replaced comparison check with true → NO_COVERAGE
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE
9. fullGtU : Negated integer local variable number 6 → NO_COVERAGE
10. fullGtU : Negated integer local variable number 7 → NO_COVERAGE
11. fullGtU : Substituted 0 with 1 → NO_COVERAGE
12. fullGtU : Substituted 1 with 0 → NO_COVERAGE
13. fullGtU : Substituted 1 with -1 → NO_COVERAGE
14. fullGtU : Substituted 0 with -1 → NO_COVERAGE
15. fullGtU : Substituted 1 with -1 → NO_COVERAGE
16. fullGtU : Substituted 1 with 2 → NO_COVERAGE
17. fullGtU : Substituted 0 with 1 → NO_COVERAGE
18. fullGtU : Substituted 1 with 0 → NO_COVERAGE
19. fullGtU : Substituted 0 with -1 → NO_COVERAGE
20. fullGtU : Less or equal to less than → NO_COVERAGE
21. fullGtU : Less or equal to greater than → NO_COVERAGE
22. fullGtU : Less or equal to greater or equal → NO_COVERAGE
23. fullGtU : Less or equal to equal → NO_COVERAGE
24. fullGtU : Less or equal to not equal → NO_COVERAGE
25. fullGtU : Incremented (a++) integer local variable number 6 → NO_COVERAGE
26. fullGtU : Incremented (a++) integer local variable number 7 → NO_COVERAGE
27. fullGtU : Decremented (a--) integer local variable number 6 → NO_COVERAGE
28. fullGtU : Decremented (a--) integer local variable number 7 → NO_COVERAGE
29. fullGtU : Incremented (++a) integer local variable number 6 → NO_COVERAGE
30. fullGtU : Incremented (++a) integer local variable number 7 → NO_COVERAGE
31. fullGtU : Decremented (--a) integer local variable number 6 → NO_COVERAGE
32. fullGtU : Decremented (--a) integer local variable number 7 → NO_COVERAGE
                return (s1 > s2);
1444
            }
1445 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i1++;
1446 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i2++;
1447
1448 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
            c1 = block[i1 + 1];
1449 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
            c2 = block[i2 + 1];
1450 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            if (c1 != c2) {
1451 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
                return (c1 > c2);
1452
            }
1453 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 1 → KILLED
            s1 = quadrant[i1];
1454 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 2 → KILLED
            s2 = quadrant[i2];
1455 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 6 → SURVIVED
5. fullGtU : Negated integer local variable number 7 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 6 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 7 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 6 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 7 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 6 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 7 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 6 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 7 → SURVIVED
            if (s1 != s2) {
1456 32 1. fullGtU : changed conditional boundary → NO_COVERAGE
2. fullGtU : Substituted 1 with 0 → NO_COVERAGE
3. fullGtU : Substituted 0 with 1 → NO_COVERAGE
4. fullGtU : negated conditional → NO_COVERAGE
5. fullGtU : removed conditional - replaced comparison check with false → NO_COVERAGE
6. fullGtU : removed conditional - replaced comparison check with true → NO_COVERAGE
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE
9. fullGtU : Negated integer local variable number 6 → NO_COVERAGE
10. fullGtU : Negated integer local variable number 7 → NO_COVERAGE
11. fullGtU : Substituted 0 with 1 → NO_COVERAGE
12. fullGtU : Substituted 1 with 0 → NO_COVERAGE
13. fullGtU : Substituted 1 with -1 → NO_COVERAGE
14. fullGtU : Substituted 0 with -1 → NO_COVERAGE
15. fullGtU : Substituted 1 with -1 → NO_COVERAGE
16. fullGtU : Substituted 1 with 2 → NO_COVERAGE
17. fullGtU : Substituted 0 with 1 → NO_COVERAGE
18. fullGtU : Substituted 1 with 0 → NO_COVERAGE
19. fullGtU : Substituted 0 with -1 → NO_COVERAGE
20. fullGtU : Less or equal to less than → NO_COVERAGE
21. fullGtU : Less or equal to greater than → NO_COVERAGE
22. fullGtU : Less or equal to greater or equal → NO_COVERAGE
23. fullGtU : Less or equal to equal → NO_COVERAGE
24. fullGtU : Less or equal to not equal → NO_COVERAGE
25. fullGtU : Incremented (a++) integer local variable number 6 → NO_COVERAGE
26. fullGtU : Incremented (a++) integer local variable number 7 → NO_COVERAGE
27. fullGtU : Decremented (a--) integer local variable number 6 → NO_COVERAGE
28. fullGtU : Decremented (a--) integer local variable number 7 → NO_COVERAGE
29. fullGtU : Incremented (++a) integer local variable number 6 → NO_COVERAGE
30. fullGtU : Incremented (++a) integer local variable number 7 → NO_COVERAGE
31. fullGtU : Decremented (--a) integer local variable number 6 → NO_COVERAGE
32. fullGtU : Decremented (--a) integer local variable number 7 → NO_COVERAGE
                return (s1 > s2);
1457
            }
1458 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i1++;
1459 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i2++;
1460
1461 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
            c1 = block[i1 + 1];
1462 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
            c2 = block[i2 + 1];
1463 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            if (c1 != c2) {
1464 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
                return (c1 > c2);
1465
            }
1466 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 1 → KILLED
            s1 = quadrant[i1];
1467 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 2 → KILLED
            s2 = quadrant[i2];
1468 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 6 → SURVIVED
5. fullGtU : Negated integer local variable number 7 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 6 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 7 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 6 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 7 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 6 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 7 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 6 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 7 → SURVIVED
            if (s1 != s2) {
1469 32 1. fullGtU : changed conditional boundary → NO_COVERAGE
2. fullGtU : Substituted 1 with 0 → NO_COVERAGE
3. fullGtU : Substituted 0 with 1 → NO_COVERAGE
4. fullGtU : negated conditional → NO_COVERAGE
5. fullGtU : removed conditional - replaced comparison check with false → NO_COVERAGE
6. fullGtU : removed conditional - replaced comparison check with true → NO_COVERAGE
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE
9. fullGtU : Negated integer local variable number 6 → NO_COVERAGE
10. fullGtU : Negated integer local variable number 7 → NO_COVERAGE
11. fullGtU : Substituted 0 with 1 → NO_COVERAGE
12. fullGtU : Substituted 1 with 0 → NO_COVERAGE
13. fullGtU : Substituted 1 with -1 → NO_COVERAGE
14. fullGtU : Substituted 0 with -1 → NO_COVERAGE
15. fullGtU : Substituted 1 with -1 → NO_COVERAGE
16. fullGtU : Substituted 1 with 2 → NO_COVERAGE
17. fullGtU : Substituted 0 with 1 → NO_COVERAGE
18. fullGtU : Substituted 1 with 0 → NO_COVERAGE
19. fullGtU : Substituted 0 with -1 → NO_COVERAGE
20. fullGtU : Less or equal to less than → NO_COVERAGE
21. fullGtU : Less or equal to greater than → NO_COVERAGE
22. fullGtU : Less or equal to greater or equal → NO_COVERAGE
23. fullGtU : Less or equal to equal → NO_COVERAGE
24. fullGtU : Less or equal to not equal → NO_COVERAGE
25. fullGtU : Incremented (a++) integer local variable number 6 → NO_COVERAGE
26. fullGtU : Incremented (a++) integer local variable number 7 → NO_COVERAGE
27. fullGtU : Decremented (a--) integer local variable number 6 → NO_COVERAGE
28. fullGtU : Decremented (a--) integer local variable number 7 → NO_COVERAGE
29. fullGtU : Incremented (++a) integer local variable number 6 → NO_COVERAGE
30. fullGtU : Incremented (++a) integer local variable number 7 → NO_COVERAGE
31. fullGtU : Decremented (--a) integer local variable number 6 → NO_COVERAGE
32. fullGtU : Decremented (--a) integer local variable number 7 → NO_COVERAGE
                return (s1 > s2);
1470
            }
1471 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i1++;
1472 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i2++;
1473
1474 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
18. fullGtU : Negated integer local variable number 1 → KILLED
            c1 = block[i1 + 1];
1475 18 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer addition with subtraction → SURVIVED
6. fullGtU : Replaced integer addition with multiplication → SURVIVED
7. fullGtU : Replaced integer addition with division → SURVIVED
8. fullGtU : Replaced integer addition with modulus → SURVIVED
9. fullGtU : Substituted 1 with 0 → SURVIVED
10. fullGtU : Substituted 1 with -1 → SURVIVED
11. fullGtU : Substituted 1 with -1 → SURVIVED
12. fullGtU : Substituted 1 with 2 → SURVIVED
13. fullGtU : Substituted 1 with 0 → SURVIVED
14. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
15. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
18. fullGtU : Negated integer local variable number 2 → KILLED
            c2 = block[i2 + 1];
1476 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 3 → SURVIVED
5. fullGtU : Negated integer local variable number 4 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
            if (c1 != c2) {
1477 32 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : Substituted 1 with 0 → SURVIVED
3. fullGtU : Substituted 0 with 1 → SURVIVED
4. fullGtU : negated conditional → SURVIVED
5. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
6. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED
9. fullGtU : Negated integer local variable number 3 → SURVIVED
10. fullGtU : Negated integer local variable number 4 → SURVIVED
11. fullGtU : Substituted 0 with 1 → SURVIVED
12. fullGtU : Substituted 1 with 0 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 0 with -1 → SURVIVED
15. fullGtU : Substituted 1 with -1 → SURVIVED
16. fullGtU : Substituted 1 with 2 → SURVIVED
17. fullGtU : Substituted 0 with 1 → SURVIVED
18. fullGtU : Substituted 1 with 0 → SURVIVED
19. fullGtU : Substituted 0 with -1 → SURVIVED
20. fullGtU : Less or equal to less than → SURVIVED
21. fullGtU : Less or equal to greater than → SURVIVED
22. fullGtU : Less or equal to greater or equal → SURVIVED
23. fullGtU : Less or equal to equal → SURVIVED
24. fullGtU : Less or equal to not equal → SURVIVED
25. fullGtU : Incremented (a++) integer local variable number 4 → SURVIVED
26. fullGtU : Incremented (a++) integer local variable number 5 → SURVIVED
27. fullGtU : Decremented (a--) integer local variable number 4 → SURVIVED
28. fullGtU : Decremented (a--) integer local variable number 5 → SURVIVED
29. fullGtU : Incremented (++a) integer local variable number 4 → SURVIVED
30. fullGtU : Incremented (++a) integer local variable number 5 → SURVIVED
31. fullGtU : Decremented (--a) integer local variable number 4 → SURVIVED
32. fullGtU : Decremented (--a) integer local variable number 5 → SURVIVED
                return (c1 > c2);
1478
            }
1479 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 1 → KILLED
            s1 = quadrant[i1];
1480 10 1. fullGtU : Negated integer array field → SURVIVED
2. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
3. fullGtU : Incremented (a++) integer array field → SURVIVED
4. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
5. fullGtU : Decremented (a--) integer array field → SURVIVED
6. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
7. fullGtU : Incremented (++a) integer array field → SURVIVED
8. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
9. fullGtU : Decremented (--a) integer array field → SURVIVED
10. fullGtU : Negated integer local variable number 2 → KILLED
            s2 = quadrant[i2];
1481 18 1. fullGtU : negated conditional → SURVIVED
2. fullGtU : removed conditional - replaced equality check with false → SURVIVED
3. fullGtU : removed conditional - replaced equality check with true → SURVIVED
4. fullGtU : Negated integer local variable number 6 → SURVIVED
5. fullGtU : Negated integer local variable number 7 → SURVIVED
6. fullGtU : equal to less than → SURVIVED
7. fullGtU : equal to less or equal → SURVIVED
8. fullGtU : equal to greater than → SURVIVED
9. fullGtU : equal to greater or equal → SURVIVED
10. fullGtU : equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 6 → SURVIVED
12. fullGtU : Incremented (a++) integer local variable number 7 → SURVIVED
13. fullGtU : Decremented (a--) integer local variable number 6 → SURVIVED
14. fullGtU : Decremented (a--) integer local variable number 7 → SURVIVED
15. fullGtU : Incremented (++a) integer local variable number 6 → SURVIVED
16. fullGtU : Incremented (++a) integer local variable number 7 → SURVIVED
17. fullGtU : Decremented (--a) integer local variable number 6 → SURVIVED
18. fullGtU : Decremented (--a) integer local variable number 7 → SURVIVED
            if (s1 != s2) {
1482 32 1. fullGtU : changed conditional boundary → NO_COVERAGE
2. fullGtU : Substituted 1 with 0 → NO_COVERAGE
3. fullGtU : Substituted 0 with 1 → NO_COVERAGE
4. fullGtU : negated conditional → NO_COVERAGE
5. fullGtU : removed conditional - replaced comparison check with false → NO_COVERAGE
6. fullGtU : removed conditional - replaced comparison check with true → NO_COVERAGE
7. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE
8. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE
9. fullGtU : Negated integer local variable number 6 → NO_COVERAGE
10. fullGtU : Negated integer local variable number 7 → NO_COVERAGE
11. fullGtU : Substituted 0 with 1 → NO_COVERAGE
12. fullGtU : Substituted 1 with 0 → NO_COVERAGE
13. fullGtU : Substituted 1 with -1 → NO_COVERAGE
14. fullGtU : Substituted 0 with -1 → NO_COVERAGE
15. fullGtU : Substituted 1 with -1 → NO_COVERAGE
16. fullGtU : Substituted 1 with 2 → NO_COVERAGE
17. fullGtU : Substituted 0 with 1 → NO_COVERAGE
18. fullGtU : Substituted 1 with 0 → NO_COVERAGE
19. fullGtU : Substituted 0 with -1 → NO_COVERAGE
20. fullGtU : Less or equal to less than → NO_COVERAGE
21. fullGtU : Less or equal to greater than → NO_COVERAGE
22. fullGtU : Less or equal to greater or equal → NO_COVERAGE
23. fullGtU : Less or equal to equal → NO_COVERAGE
24. fullGtU : Less or equal to not equal → NO_COVERAGE
25. fullGtU : Incremented (a++) integer local variable number 6 → NO_COVERAGE
26. fullGtU : Incremented (a++) integer local variable number 7 → NO_COVERAGE
27. fullGtU : Decremented (a--) integer local variable number 6 → NO_COVERAGE
28. fullGtU : Decremented (a--) integer local variable number 7 → NO_COVERAGE
29. fullGtU : Incremented (++a) integer local variable number 6 → NO_COVERAGE
30. fullGtU : Incremented (++a) integer local variable number 7 → NO_COVERAGE
31. fullGtU : Decremented (--a) integer local variable number 6 → NO_COVERAGE
32. fullGtU : Decremented (--a) integer local variable number 7 → NO_COVERAGE
                return (s1 > s2);
1483
            }
1484 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i1++;
1485 2 1. fullGtU : Changed increment from 1 to -1 → SURVIVED
2. fullGtU : Removed increment 1 → SURVIVED
            i2++;
1486
1487 19 1. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
2. fullGtU : Negated integer local variable number 1 → SURVIVED
3. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
4. fullGtU : Incremented (a++) integer field last → SURVIVED
5. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
6. fullGtU : Decremented (a--) integer field last → SURVIVED
7. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
8. fullGtU : Incremented (++a) integer field last → SURVIVED
9. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
10. fullGtU : Decremented (--a) integer fieldlast → SURVIVED
11. fullGtU : changed conditional boundary → KILLED
12. fullGtU : negated conditional → KILLED
13. fullGtU : removed conditional - replaced comparison check with true → KILLED
14. fullGtU : Negated integer field last → KILLED
15. fullGtU : Less or equal to less than → KILLED
16. fullGtU : Less or equal to greater than → KILLED
17. fullGtU : Less or equal to greater or equal → KILLED
18. fullGtU : Less or equal to equal → KILLED
19. fullGtU : Less or equal to not equal → KILLED
            if (i1 > last) {
1488 17 1. fullGtU : Replaced integer subtraction with addition → SURVIVED
2. fullGtU : Negated integer field last → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer subtraction with addition → SURVIVED
6. fullGtU : Replaced integer subtraction with multiplication → SURVIVED
7. fullGtU : Replaced integer subtraction with division → SURVIVED
8. fullGtU : Replaced integer subtraction with modulus → SURVIVED
9. fullGtU : Incremented (a++) integer local variable number 1 → SURVIVED
10. fullGtU : Incremented (a++) integer field last → SURVIVED
11. fullGtU : Decremented (a--) integer local variable number 1 → SURVIVED
12. fullGtU : Decremented (a--) integer field last → SURVIVED
13. fullGtU : Incremented (++a) integer local variable number 1 → SURVIVED
14. fullGtU : Incremented (++a) integer field last → SURVIVED
15. fullGtU : Decremented (--a) integer local variable number 1 → SURVIVED
16. fullGtU : Decremented (--a) integer fieldlast → SURVIVED
17. fullGtU : Negated integer local variable number 1 → KILLED
                i1 -= last;
1489 2 1. fullGtU : Changed increment from -1 to 1 → SURVIVED
2. fullGtU : Removed increment -1 → SURVIVED
                i1--;
1490
            }
1491 19 1. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
2. fullGtU : Negated integer local variable number 2 → SURVIVED
3. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
4. fullGtU : Incremented (a++) integer field last → SURVIVED
5. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
6. fullGtU : Decremented (a--) integer field last → SURVIVED
7. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
8. fullGtU : Incremented (++a) integer field last → SURVIVED
9. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
10. fullGtU : Decremented (--a) integer fieldlast → SURVIVED
11. fullGtU : changed conditional boundary → KILLED
12. fullGtU : negated conditional → KILLED
13. fullGtU : removed conditional - replaced comparison check with true → KILLED
14. fullGtU : Negated integer field last → KILLED
15. fullGtU : Less or equal to less than → KILLED
16. fullGtU : Less or equal to greater than → KILLED
17. fullGtU : Less or equal to greater or equal → KILLED
18. fullGtU : Less or equal to equal → KILLED
19. fullGtU : Less or equal to not equal → KILLED
            if (i2 > last) {
1492 17 1. fullGtU : Replaced integer subtraction with addition → SURVIVED
2. fullGtU : Negated integer field last → SURVIVED
3. fullGtU : Replaced integer operation with first member → SURVIVED
4. fullGtU : Replaced integer operation by second member → SURVIVED
5. fullGtU : Replaced integer subtraction with addition → SURVIVED
6. fullGtU : Replaced integer subtraction with multiplication → SURVIVED
7. fullGtU : Replaced integer subtraction with division → SURVIVED
8. fullGtU : Replaced integer subtraction with modulus → SURVIVED
9. fullGtU : Incremented (a++) integer local variable number 2 → SURVIVED
10. fullGtU : Incremented (a++) integer field last → SURVIVED
11. fullGtU : Decremented (a--) integer local variable number 2 → SURVIVED
12. fullGtU : Decremented (a--) integer field last → SURVIVED
13. fullGtU : Incremented (++a) integer local variable number 2 → SURVIVED
14. fullGtU : Incremented (++a) integer field last → SURVIVED
15. fullGtU : Decremented (--a) integer local variable number 2 → SURVIVED
16. fullGtU : Decremented (--a) integer fieldlast → SURVIVED
17. fullGtU : Negated integer local variable number 2 → KILLED
                i2 -= last;
1493 2 1. fullGtU : Changed increment from -1 to 1 → SURVIVED
2. fullGtU : Removed increment -1 → SURVIVED
                i2--;
1494
            }
1495
1496 2 1. fullGtU : Changed increment from -4 to 4 → SURVIVED
2. fullGtU : Removed increment -4 → SURVIVED
            k -= 4;
1497 19 1. fullGtU : Substituted 1 with 0 → SURVIVED
2. fullGtU : Replaced integer addition with subtraction → SURVIVED
3. fullGtU : Removed assignment to member variable workDone → SURVIVED
4. fullGtU : Negated integer field workDone → SURVIVED
5. fullGtU : Replaced integer operation with first member → SURVIVED
6. fullGtU : Replaced integer operation by second member → SURVIVED
7. fullGtU : Replaced integer addition with subtraction → SURVIVED
8. fullGtU : Replaced integer addition with multiplication → SURVIVED
9. fullGtU : Replaced integer addition with division → SURVIVED
10. fullGtU : Replaced integer addition with modulus → SURVIVED
11. fullGtU : Substituted 1 with 0 → SURVIVED
12. fullGtU : Substituted 1 with -1 → SURVIVED
13. fullGtU : Substituted 1 with -1 → SURVIVED
14. fullGtU : Substituted 1 with 2 → SURVIVED
15. fullGtU : Substituted 1 with 0 → SURVIVED
16. fullGtU : Incremented (a++) integer field workDone → SURVIVED
17. fullGtU : Decremented (a--) integer field workDone → SURVIVED
18. fullGtU : Incremented (++a) integer field workDone → SURVIVED
19. fullGtU : Decremented (--a) integer fieldworkDone → SURVIVED
            workDone++;
1498 14 1. fullGtU : changed conditional boundary → SURVIVED
2. fullGtU : negated conditional → SURVIVED
3. fullGtU : removed conditional - replaced comparison check with false → SURVIVED
4. fullGtU : removed conditional - replaced comparison check with true → SURVIVED
5. fullGtU : Negated integer local variable number 5 → SURVIVED
6. fullGtU : greater or equal to less than → SURVIVED
7. fullGtU : greater or equal to less or equal → SURVIVED
8. fullGtU : greater or equal to greater than → SURVIVED
9. fullGtU : greater or equal to equal → SURVIVED
10. fullGtU : greater or equal to not equal → SURVIVED
11. fullGtU : Incremented (a++) integer local variable number 3 → SURVIVED
12. fullGtU : Decremented (a--) integer local variable number 3 → SURVIVED
13. fullGtU : Incremented (++a) integer local variable number 3 → SURVIVED
14. fullGtU : Decremented (--a) integer local variable number 3 → SURVIVED
        } while (k >= 0);
1499
1500 7 1. fullGtU : Substituted 0 with 1 → NO_COVERAGE
2. fullGtU : replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE
3. fullGtU : replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE
4. fullGtU : Substituted 0 with 1 → NO_COVERAGE
5. fullGtU : Substituted 0 with -1 → NO_COVERAGE
6. fullGtU : Substituted 0 with 1 → NO_COVERAGE
7. fullGtU : Substituted 0 with -1 → NO_COVERAGE
        return false;
1501
    }
1502
1503
    /*
1504
      Knuth's increments seem to work better
1505
      than Incerpi-Sedgewick here.  Possibly
1506
      because the number of elems to sort is
1507
      usually small, typically <= 20.
1508
    */
1509 200 1. <init> : Substituted 14 with 15 → SURVIVED
2. <init> : Substituted 0 with 1 → SURVIVED
3. <init> : Substituted 1 with 0 → SURVIVED
4. <init> : Substituted 1 with 0 → SURVIVED
5. <init> : Substituted 4 with 5 → SURVIVED
6. <init> : Substituted 2 with 3 → SURVIVED
7. <init> : Substituted 13 with 14 → SURVIVED
8. <init> : Substituted 3 with 4 → SURVIVED
9. <init> : Substituted 40 with 41 → SURVIVED
10. <init> : Substituted 4 with 5 → SURVIVED
11. <init> : Substituted 121 with 122 → SURVIVED
12. <init> : Substituted 5 with 6 → SURVIVED
13. <init> : Substituted 364 with 365 → SURVIVED
14. <init> : Substituted 6 with 7 → SURVIVED
15. <init> : Substituted 1093 with 1094 → SURVIVED
16. <init> : Substituted 7 with 8 → SURVIVED
17. <init> : Substituted 3280 with 3281 → SURVIVED
18. <init> : Substituted 8 with 9 → SURVIVED
19. <init> : Substituted 9841 with 9842 → SURVIVED
20. <init> : Substituted 9 with 10 → SURVIVED
21. <init> : Substituted 29524 with 29525 → SURVIVED
22. <init> : Substituted 10 with 11 → SURVIVED
23. <init> : Substituted 88573 with 88574 → SURVIVED
24. <init> : Substituted 11 with 12 → SURVIVED
25. <init> : Substituted 265720 with 265721 → SURVIVED
26. <init> : Substituted 12 with 13 → SURVIVED
27. <init> : Substituted 797161 with 797162 → SURVIVED
28. <init> : Substituted 2391484 with 2391485 → SURVIVED
29. <init> : Substituted 0 with 1 → SURVIVED
30. <init> : Substituted 4 with 1 → SURVIVED
31. <init> : Substituted 2 with 1 → SURVIVED
32. <init> : Substituted 13 with 1 → SURVIVED
33. <init> : Substituted 3 with 1 → SURVIVED
34. <init> : Substituted 40 with 1 → SURVIVED
35. <init> : Substituted 4 with 1 → SURVIVED
36. <init> : Substituted 121 with 1 → SURVIVED
37. <init> : Substituted 5 with 1 → SURVIVED
38. <init> : Substituted 364 with 1 → SURVIVED
39. <init> : Substituted 6 with 1 → SURVIVED
40. <init> : Substituted 1093 with 1 → SURVIVED
41. <init> : Substituted 7 with 1 → SURVIVED
42. <init> : Substituted 3280 with 1 → SURVIVED
43. <init> : Substituted 8 with 1 → SURVIVED
44. <init> : Substituted 9841 with 1 → SURVIVED
45. <init> : Substituted 9 with 1 → SURVIVED
46. <init> : Substituted 29524 with 1 → SURVIVED
47. <init> : Substituted 10 with 1 → SURVIVED
48. <init> : Substituted 88573 with 1 → SURVIVED
49. <init> : Substituted 11 with 1 → SURVIVED
50. <init> : Substituted 265720 with 1 → SURVIVED
51. <init> : Substituted 12 with 1 → SURVIVED
52. <init> : Substituted 797161 with 1 → SURVIVED
53. <init> : Substituted 13 with 1 → SURVIVED
54. <init> : Substituted 2391484 with 1 → SURVIVED
55. <init> : Substituted 1 with 0 → SURVIVED
56. <init> : Substituted 1 with 0 → SURVIVED
57. <init> : Substituted 4 with 0 → SURVIVED
58. <init> : Substituted 2 with 0 → SURVIVED
59. <init> : Substituted 13 with 0 → SURVIVED
60. <init> : Substituted 3 with 0 → SURVIVED
61. <init> : Substituted 40 with 0 → SURVIVED
62. <init> : Substituted 4 with 0 → SURVIVED
63. <init> : Substituted 121 with 0 → SURVIVED
64. <init> : Substituted 5 with 0 → SURVIVED
65. <init> : Substituted 364 with 0 → SURVIVED
66. <init> : Substituted 6 with 0 → SURVIVED
67. <init> : Substituted 1093 with 0 → SURVIVED
68. <init> : Substituted 7 with 0 → SURVIVED
69. <init> : Substituted 3280 with 0 → SURVIVED
70. <init> : Substituted 8 with 0 → SURVIVED
71. <init> : Substituted 9841 with 0 → SURVIVED
72. <init> : Substituted 9 with 0 → SURVIVED
73. <init> : Substituted 29524 with 0 → SURVIVED
74. <init> : Substituted 10 with 0 → SURVIVED
75. <init> : Substituted 88573 with 0 → SURVIVED
76. <init> : Substituted 11 with 0 → SURVIVED
77. <init> : Substituted 265720 with 0 → SURVIVED
78. <init> : Substituted 12 with 0 → SURVIVED
79. <init> : Substituted 797161 with 0 → SURVIVED
80. <init> : Substituted 13 with 0 → SURVIVED
81. <init> : Substituted 2391484 with 0 → SURVIVED
82. <init> : Substituted 1093 with -1 → SURVIVED
83. <init> : Substituted 3280 with -1 → SURVIVED
84. <init> : Substituted 9841 with -1 → SURVIVED
85. <init> : Substituted 29524 with -1 → SURVIVED
86. <init> : Substituted 88573 with -1 → SURVIVED
87. <init> : Substituted 265720 with -1 → SURVIVED
88. <init> : Substituted 797161 with -1 → SURVIVED
89. <init> : Substituted 2391484 with -1 → SURVIVED
90. <init> : Substituted 1093 with -1093 → SURVIVED
91. <init> : Substituted 3280 with -3280 → SURVIVED
92. <init> : Substituted 9841 with -9841 → SURVIVED
93. <init> : Substituted 29524 with -29524 → SURVIVED
94. <init> : Substituted 88573 with -88573 → SURVIVED
95. <init> : Substituted 265720 with -265720 → SURVIVED
96. <init> : Substituted 797161 with -797161 → SURVIVED
97. <init> : Substituted 2391484 with -2391484 → SURVIVED
98. <init> : Substituted 14 with 15 → SURVIVED
99. <init> : Substituted 0 with 1 → SURVIVED
100. <init> : Substituted 1 with 2 → SURVIVED
101. <init> : Substituted 1 with 2 → SURVIVED
102. <init> : Substituted 4 with 5 → SURVIVED
103. <init> : Substituted 2 with 3 → SURVIVED
104. <init> : Substituted 13 with 14 → SURVIVED
105. <init> : Substituted 3 with 4 → SURVIVED
106. <init> : Substituted 40 with 41 → SURVIVED
107. <init> : Substituted 4 with 5 → SURVIVED
108. <init> : Substituted 121 with 122 → SURVIVED
109. <init> : Substituted 5 with 6 → SURVIVED
110. <init> : Substituted 364 with 365 → SURVIVED
111. <init> : Substituted 6 with 7 → SURVIVED
112. <init> : Substituted 1093 with 1094 → SURVIVED
113. <init> : Substituted 7 with 8 → SURVIVED
114. <init> : Substituted 3280 with 3281 → SURVIVED
115. <init> : Substituted 8 with 9 → SURVIVED
116. <init> : Substituted 9841 with 9842 → SURVIVED
117. <init> : Substituted 9 with 10 → SURVIVED
118. <init> : Substituted 29524 with 29525 → SURVIVED
119. <init> : Substituted 10 with 11 → SURVIVED
120. <init> : Substituted 88573 with 88574 → SURVIVED
121. <init> : Substituted 11 with 12 → SURVIVED
122. <init> : Substituted 265720 with 265721 → SURVIVED
123. <init> : Substituted 12 with 13 → SURVIVED
124. <init> : Substituted 797161 with 797162 → SURVIVED
125. <init> : Substituted 2391484 with 2391485 → SURVIVED
126. <init> : Substituted 1 with 0 → SURVIVED
127. <init> : Substituted 1 with 0 → SURVIVED
128. <init> : Substituted 4 with 3 → SURVIVED
129. <init> : Substituted 2 with 1 → SURVIVED
130. <init> : Substituted 13 with 12 → SURVIVED
131. <init> : Substituted 3 with 2 → SURVIVED
132. <init> : Substituted 40 with 39 → SURVIVED
133. <init> : Substituted 4 with 3 → SURVIVED
134. <init> : Substituted 121 with 120 → SURVIVED
135. <init> : Substituted 5 with 4 → SURVIVED
136. <init> : Substituted 364 with 363 → SURVIVED
137. <init> : Substituted 6 with 5 → SURVIVED
138. <init> : Substituted 1093 with 1092 → SURVIVED
139. <init> : Substituted 7 with 6 → SURVIVED
140. <init> : Substituted 3280 with 3279 → SURVIVED
141. <init> : Substituted 8 with 7 → SURVIVED
142. <init> : Substituted 9841 with 9840 → SURVIVED
143. <init> : Substituted 9 with 8 → SURVIVED
144. <init> : Substituted 29524 with 29523 → SURVIVED
145. <init> : Substituted 10 with 9 → SURVIVED
146. <init> : Substituted 88573 with 88572 → SURVIVED
147. <init> : Substituted 11 with 10 → SURVIVED
148. <init> : Substituted 265720 with 265719 → SURVIVED
149. <init> : Substituted 12 with 11 → SURVIVED
150. <init> : Substituted 797161 with 797160 → SURVIVED
151. <init> : Substituted 13 with 12 → SURVIVED
152. <init> : Substituted 2391484 with 2391483 → SURVIVED
153. <init> : Substituted 13 with 14 → KILLED
154. <init> : Removed assignment to member variable incs → KILLED
155. <init> : Substituted 14 with 1 → KILLED
156. <init> : Substituted 14 with 0 → KILLED
157. <init> : Substituted 14 with -1 → KILLED
158. <init> : Substituted 0 with -1 → KILLED
159. <init> : Substituted 1 with -1 → KILLED
160. <init> : Substituted 1 with -1 → KILLED
161. <init> : Substituted 4 with -1 → KILLED
162. <init> : Substituted 2 with -1 → KILLED
163. <init> : Substituted 13 with -1 → KILLED
164. <init> : Substituted 3 with -1 → KILLED
165. <init> : Substituted 40 with -1 → KILLED
166. <init> : Substituted 4 with -1 → KILLED
167. <init> : Substituted 121 with -1 → KILLED
168. <init> : Substituted 5 with -1 → KILLED
169. <init> : Substituted 364 with -1 → KILLED
170. <init> : Substituted 6 with -1 → KILLED
171. <init> : Substituted 7 with -1 → KILLED
172. <init> : Substituted 8 with -1 → KILLED
173. <init> : Substituted 9 with -1 → KILLED
174. <init> : Substituted 10 with -1 → KILLED
175. <init> : Substituted 11 with -1 → KILLED
176. <init> : Substituted 12 with -1 → KILLED
177. <init> : Substituted 13 with -1 → KILLED
178. <init> : Substituted 14 with -14 → KILLED
179. <init> : Substituted 1 with -1 → KILLED
180. <init> : Substituted 1 with -1 → KILLED
181. <init> : Substituted 4 with -4 → KILLED
182. <init> : Substituted 2 with -2 → KILLED
183. <init> : Substituted 13 with -13 → KILLED
184. <init> : Substituted 3 with -3 → KILLED
185. <init> : Substituted 40 with -40 → KILLED
186. <init> : Substituted 4 with -4 → KILLED
187. <init> : Substituted 121 with -121 → KILLED
188. <init> : Substituted 5 with -5 → KILLED
189. <init> : Substituted 364 with -364 → KILLED
190. <init> : Substituted 6 with -6 → KILLED
191. <init> : Substituted 7 with -7 → KILLED
192. <init> : Substituted 8 with -8 → KILLED
193. <init> : Substituted 9 with -9 → KILLED
194. <init> : Substituted 10 with -10 → KILLED
195. <init> : Substituted 11 with -11 → KILLED
196. <init> : Substituted 12 with -12 → KILLED
197. <init> : Substituted 13 with -13 → KILLED
198. <init> : Substituted 13 with 14 → KILLED
199. <init> : Substituted 14 with 13 → KILLED
200. <init> : Substituted 0 with -1 → KILLED
    private int[] incs = {1, 4, 13, 40, 121, 364, 1093, 3280,
1510
                          9841, 29524, 88573, 265720,
1511
                          797161, 2391484};
1512
1513
    private void allocateCompressStructures () {
1514 19 1. allocateCompressStructures : Substituted 100000 with 100001 → SURVIVED
2. allocateCompressStructures : Replaced integer multiplication with division → SURVIVED
3. allocateCompressStructures : Replaced integer operation with first member → SURVIVED
4. allocateCompressStructures : Replaced integer multiplication with division → SURVIVED
5. allocateCompressStructures : Replaced integer multiplication with addition → SURVIVED
6. allocateCompressStructures : Replaced integer multiplication with subtraction → SURVIVED
7. allocateCompressStructures : Substituted 100000 with 100001 → SURVIVED
8. allocateCompressStructures : Substituted 100000 with 99999 → SURVIVED
9. allocateCompressStructures : Incremented (a++) integer field blockSize100k → SURVIVED
10. allocateCompressStructures : Decremented (a--) integer field blockSize100k → SURVIVED
11. allocateCompressStructures : Incremented (++a) integer field blockSize100k → SURVIVED
12. allocateCompressStructures : Decremented (--a) integer fieldblockSize100k → SURVIVED
13. allocateCompressStructures : Negated integer field blockSize100k → KILLED
14. allocateCompressStructures : Replaced integer operation by second member → KILLED
15. allocateCompressStructures : Replaced integer multiplication with modulus → KILLED
16. allocateCompressStructures : Substituted 100000 with 1 → KILLED
17. allocateCompressStructures : Substituted 100000 with 0 → KILLED
18. allocateCompressStructures : Substituted 100000 with -1 → KILLED
19. allocateCompressStructures : Substituted 100000 with -100000 → KILLED
        int n = baseBlockSize * blockSize100k;
1515 33 1. allocateCompressStructures : Substituted 1 with 0 → SURVIVED
2. allocateCompressStructures : Substituted 20 with 21 → SURVIVED
3. allocateCompressStructures : Replaced integer addition with subtraction → SURVIVED
4. allocateCompressStructures : Replaced integer addition with subtraction → SURVIVED
5. allocateCompressStructures : Replaced integer operation with first member → SURVIVED
6. allocateCompressStructures : Replaced integer operation with first member → SURVIVED
7. allocateCompressStructures : Replaced integer addition with subtraction → SURVIVED
8. allocateCompressStructures : Replaced integer addition with subtraction → SURVIVED
9. allocateCompressStructures : Replaced integer addition with multiplication → SURVIVED
10. allocateCompressStructures : Replaced integer addition with multiplication → SURVIVED
11. allocateCompressStructures : Replaced integer addition with division → SURVIVED
12. allocateCompressStructures : Replaced integer addition with division → SURVIVED
13. allocateCompressStructures : Substituted 20 with 1 → SURVIVED
14. allocateCompressStructures : Substituted 1 with 0 → SURVIVED
15. allocateCompressStructures : Substituted 20 with 0 → SURVIVED
16. allocateCompressStructures : Substituted 1 with -1 → SURVIVED
17. allocateCompressStructures : Substituted 20 with -1 → SURVIVED
18. allocateCompressStructures : Substituted 1 with -1 → SURVIVED
19. allocateCompressStructures : Substituted 20 with -20 → SURVIVED
20. allocateCompressStructures : Substituted 1 with 2 → SURVIVED
21. allocateCompressStructures : Substituted 20 with 21 → SURVIVED
22. allocateCompressStructures : Substituted 1 with 0 → SURVIVED
23. allocateCompressStructures : Substituted 20 with 19 → SURVIVED
24. allocateCompressStructures : Incremented (a++) integer local variable number 1 → SURVIVED
25. allocateCompressStructures : Decremented (a--) integer local variable number 1 → SURVIVED
26. allocateCompressStructures : Incremented (++a) integer local variable number 1 → SURVIVED
27. allocateCompressStructures : Decremented (--a) integer local variable number 1 → SURVIVED
28. allocateCompressStructures : Removed assignment to member variable block → KILLED
29. allocateCompressStructures : Negated integer local variable number 1 → KILLED
30. allocateCompressStructures : Replaced integer operation by second member → KILLED
31. allocateCompressStructures : Replaced integer operation by second member → KILLED
32. allocateCompressStructures : Replaced integer addition with modulus → KILLED
33. allocateCompressStructures : Replaced integer addition with modulus → KILLED
        block = new char[(n + 1 + NUM_OVERSHOOT_BYTES)];
1516 20 1. allocateCompressStructures : Substituted 20 with 21 → SURVIVED
2. allocateCompressStructures : Replaced integer addition with subtraction → SURVIVED
3. allocateCompressStructures : Replaced integer operation with first member → SURVIVED
4. allocateCompressStructures : Replaced integer addition with subtraction → SURVIVED
5. allocateCompressStructures : Replaced integer addition with multiplication → SURVIVED
6. allocateCompressStructures : Replaced integer addition with division → SURVIVED
7. allocateCompressStructures : Substituted 20 with 1 → SURVIVED
8. allocateCompressStructures : Substituted 20 with 0 → SURVIVED
9. allocateCompressStructures : Substituted 20 with -1 → SURVIVED
10. allocateCompressStructures : Substituted 20 with -20 → SURVIVED
11. allocateCompressStructures : Substituted 20 with 21 → SURVIVED
12. allocateCompressStructures : Substituted 20 with 19 → SURVIVED
13. allocateCompressStructures : Incremented (a++) integer local variable number 1 → SURVIVED
14. allocateCompressStructures : Decremented (a--) integer local variable number 1 → SURVIVED
15. allocateCompressStructures : Incremented (++a) integer local variable number 1 → SURVIVED
16. allocateCompressStructures : Decremented (--a) integer local variable number 1 → SURVIVED
17. allocateCompressStructures : Removed assignment to member variable quadrant → KILLED
18. allocateCompressStructures : Negated integer local variable number 1 → KILLED
19. allocateCompressStructures : Replaced integer operation by second member → KILLED
20. allocateCompressStructures : Replaced integer addition with modulus → KILLED
        quadrant = new int[(n + NUM_OVERSHOOT_BYTES)];
1517 6 1. allocateCompressStructures : Incremented (a++) integer local variable number 1 → SURVIVED
2. allocateCompressStructures : Decremented (a--) integer local variable number 1 → SURVIVED
3. allocateCompressStructures : Incremented (++a) integer local variable number 1 → SURVIVED
4. allocateCompressStructures : Decremented (--a) integer local variable number 1 → SURVIVED
5. allocateCompressStructures : Removed assignment to member variable zptr → KILLED
6. allocateCompressStructures : Negated integer local variable number 1 → KILLED
        zptr = new int[n];
1518 8 1. allocateCompressStructures : Substituted 65537 with 65538 → SURVIVED
2. allocateCompressStructures : Removed assignment to member variable ftab → SURVIVED
3. allocateCompressStructures : Substituted 65537 with 1 → SURVIVED
4. allocateCompressStructures : Substituted 65537 with 0 → SURVIVED
5. allocateCompressStructures : Substituted 65537 with 65538 → SURVIVED
6. allocateCompressStructures : Substituted 65537 with 65536 → SURVIVED
7. allocateCompressStructures : Substituted 65537 with -1 → KILLED
8. allocateCompressStructures : Substituted 65537 with -65537 → KILLED
        ftab = new int[65537];
1519
1520 16 1. allocateCompressStructures : negated conditional → SURVIVED
2. allocateCompressStructures : negated conditional → SURVIVED
3. allocateCompressStructures : negated conditional → SURVIVED
4. allocateCompressStructures : negated conditional → SURVIVED
5. allocateCompressStructures : removed conditional - replaced equality check with false → SURVIVED
6. allocateCompressStructures : removed conditional - replaced equality check with false → SURVIVED
7. allocateCompressStructures : removed conditional - replaced equality check with false → SURVIVED
8. allocateCompressStructures : removed conditional - replaced equality check with false → SURVIVED
9. allocateCompressStructures : removed conditional - replaced equality check with true → SURVIVED
10. allocateCompressStructures : removed conditional - replaced equality check with true → SURVIVED
11. allocateCompressStructures : removed conditional - replaced equality check with true → SURVIVED
12. allocateCompressStructures : removed conditional - replaced equality check with true → SURVIVED
13. allocateCompressStructures : equal to not equal → SURVIVED
14. allocateCompressStructures : equal to not equal → SURVIVED
15. allocateCompressStructures : equal to not equal → SURVIVED
16. allocateCompressStructures : not equal to equal → SURVIVED
        if (block == null || quadrant == null || zptr == null
1521
            || ftab == null) {
1522
            //int totalDraw = (n + 1 + NUM_OVERSHOOT_BYTES) + (n + NUM_OVERSHOOT_BYTES) + n + 65537;
1523
            //compressOutOfMemory ( totalDraw, n );
1524
        }
1525
1526
        /*
1527
          The back end needs a place to store the MTF values
1528
          whilst it calculates the coding tables.  We could
1529
          put them in the zptr array.  However, these values
1530
          will fit in a short, so we overlay szptr at the
1531
          start of zptr, in the hope of reducing the number
1532
          of cache misses induced by the multiple traversals
1533
          of the MTF values when calculating coding tables.
1534
          Seems to improve compression speed by about 1%.
1535
        */
1536
        //    szptr = zptr;
1537
1538
1539 20 1. allocateCompressStructures : Substituted 2 with 3 → SURVIVED
2. allocateCompressStructures : Replaced integer operation by second member → SURVIVED
3. allocateCompressStructures : Replaced integer multiplication with addition → SURVIVED
4. allocateCompressStructures : Substituted 2 with 1 → SURVIVED
5. allocateCompressStructures : Substituted 2 with 3 → SURVIVED
6. allocateCompressStructures : Substituted 2 with 1 → SURVIVED
7. allocateCompressStructures : Incremented (a++) integer local variable number 1 → SURVIVED
8. allocateCompressStructures : Decremented (a--) integer local variable number 1 → SURVIVED
9. allocateCompressStructures : Incremented (++a) integer local variable number 1 → SURVIVED
10. allocateCompressStructures : Decremented (--a) integer local variable number 1 → SURVIVED
11. allocateCompressStructures : Replaced integer multiplication with division → KILLED
12. allocateCompressStructures : Removed assignment to member variable szptr → KILLED
13. allocateCompressStructures : Negated integer local variable number 1 → KILLED
14. allocateCompressStructures : Replaced integer operation with first member → KILLED
15. allocateCompressStructures : Replaced integer multiplication with division → KILLED
16. allocateCompressStructures : Replaced integer multiplication with modulus → KILLED
17. allocateCompressStructures : Replaced integer multiplication with subtraction → KILLED
18. allocateCompressStructures : Substituted 2 with 0 → KILLED
19. allocateCompressStructures : Substituted 2 with -1 → KILLED
20. allocateCompressStructures : Substituted 2 with -2 → KILLED
        szptr = new short[2 * n];
1540
    }
1541
1542
    private void generateMTFValues() {
1543 7 1. generateMTFValues : Substituted 256 with 257 → SURVIVED
2. generateMTFValues : Substituted 256 with 257 → SURVIVED
3. generateMTFValues : Substituted 256 with 255 → SURVIVED
4. generateMTFValues : Substituted 256 with 1 → KILLED
5. generateMTFValues : Substituted 256 with 0 → KILLED
6. generateMTFValues : Substituted 256 with -1 → KILLED
7. generateMTFValues : Substituted 256 with -256 → KILLED
        char[] yy = new char[256];
1544
        int  i, j;
1545
        char tmp;
1546
        char tmp2;
1547
        int zPend;
1548
        int wr;
1549
        int EOB;
1550
1551 1 1. generateMTFValues : removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::makeMaps → SURVIVED
        makeMaps();
1552 18 1. generateMTFValues : Substituted 1 with 0 → SURVIVED
2. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
3. generateMTFValues : Replaced integer operation with first member → SURVIVED
4. generateMTFValues : Replaced integer operation by second member → SURVIVED
5. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
6. generateMTFValues : Replaced integer addition with multiplication → SURVIVED
7. generateMTFValues : Replaced integer addition with division → SURVIVED
8. generateMTFValues : Replaced integer addition with modulus → SURVIVED
9. generateMTFValues : Substituted 1 with 0 → SURVIVED
10. generateMTFValues : Substituted 1 with -1 → SURVIVED
11. generateMTFValues : Substituted 1 with -1 → SURVIVED
12. generateMTFValues : Substituted 1 with 2 → SURVIVED
13. generateMTFValues : Substituted 1 with 0 → SURVIVED
14. generateMTFValues : Incremented (a++) integer field nInUse → SURVIVED
15. generateMTFValues : Incremented (++a) integer field nInUse → SURVIVED
16. generateMTFValues : Negated integer field nInUse → KILLED
17. generateMTFValues : Decremented (a--) integer field nInUse → KILLED
18. generateMTFValues : Decremented (--a) integer fieldnInUse → KILLED
        EOB = nInUse + 1;
1553
1554 25 1. generateMTFValues : changed conditional boundary → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : negated conditional → SURVIVED
4. generateMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. generateMTFValues : Negated integer local variable number 2 → SURVIVED
6. generateMTFValues : Substituted 0 with 1 → SURVIVED
7. generateMTFValues : Substituted 0 with 1 → SURVIVED
8. generateMTFValues : greater than to less than → SURVIVED
9. generateMTFValues : greater than to less or equal → SURVIVED
10. generateMTFValues : greater than to greater or equal → SURVIVED
11. generateMTFValues : greater than to equal → SURVIVED
12. generateMTFValues : greater than to not equal → SURVIVED
13. generateMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
14. generateMTFValues : Decremented (a--) integer local variable number 8 → SURVIVED
15. generateMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
16. generateMTFValues : Decremented (--a) integer local variable number 8 → SURVIVED
17. generateMTFValues : Changed increment from 1 to -1 → KILLED
18. generateMTFValues : removed conditional - replaced comparison check with true → KILLED
19. generateMTFValues : Negated integer local variable number 3 → KILLED
20. generateMTFValues : Substituted 0 with -1 → KILLED
21. generateMTFValues : Substituted 0 with -1 → KILLED
22. generateMTFValues : Incremented (a++) integer local variable number 8 → KILLED
23. generateMTFValues : Decremented (a--) integer local variable number 2 → KILLED
24. generateMTFValues : Incremented (++a) integer local variable number 8 → KILLED
25. generateMTFValues : Decremented (--a) integer local variable number 2 → KILLED
        for (i = 0; i <= EOB; i++) {
1555 10 1. generateMTFValues : Substituted 0 with 1 → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : Substituted 0 with -1 → SURVIVED
4. generateMTFValues : Substituted 0 with 1 → SURVIVED
5. generateMTFValues : Substituted 0 with -1 → SURVIVED
6. generateMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
7. generateMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
8. generateMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
9. generateMTFValues : Negated integer local variable number 3 → KILLED
10. generateMTFValues : Decremented (--a) integer local variable number 2 → KILLED
            mtfFreq[i] = 0;
1556
        }
1557
1558 5 1. generateMTFValues : Substituted 0 with 1 → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : Substituted 0 with 1 → SURVIVED
4. generateMTFValues : Substituted 0 with -1 → KILLED
5. generateMTFValues : Substituted 0 with -1 → KILLED
        wr = 0;
1559 5 1. generateMTFValues : Substituted 0 with 1 → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : Substituted 0 with -1 → SURVIVED
4. generateMTFValues : Substituted 0 with 1 → SURVIVED
5. generateMTFValues : Substituted 0 with -1 → SURVIVED
        zPend = 0;
1560 25 1. generateMTFValues : changed conditional boundary → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : Substituted 0 with 1 → SURVIVED
4. generateMTFValues : Substituted 0 with 1 → SURVIVED
5. generateMTFValues : greater or equal to greater than → SURVIVED
6. generateMTFValues : greater or equal to equal → SURVIVED
7. generateMTFValues : Changed increment from 1 to -1 → KILLED
8. generateMTFValues : negated conditional → KILLED
9. generateMTFValues : removed conditional - replaced comparison check with false → KILLED
10. generateMTFValues : removed conditional - replaced comparison check with true → KILLED
11. generateMTFValues : Negated integer local variable number 3 → KILLED
12. generateMTFValues : Negated integer field nInUse → KILLED
13. generateMTFValues : Substituted 0 with -1 → KILLED
14. generateMTFValues : Substituted 0 with -1 → KILLED
15. generateMTFValues : greater or equal to less than → KILLED
16. generateMTFValues : greater or equal to less or equal → KILLED
17. generateMTFValues : greater or equal to not equal → KILLED
18. generateMTFValues : Incremented (a++) integer local variable number 2 → KILLED
19. generateMTFValues : Incremented (a++) integer field nInUse → KILLED
20. generateMTFValues : Decremented (a--) integer local variable number 2 → KILLED
21. generateMTFValues : Decremented (a--) integer field nInUse → KILLED
22. generateMTFValues : Incremented (++a) integer local variable number 2 → KILLED
23. generateMTFValues : Incremented (++a) integer field nInUse → KILLED
24. generateMTFValues : Decremented (--a) integer local variable number 2 → KILLED
25. generateMTFValues : Decremented (--a) integer fieldnInUse → KILLED
        for (i = 0; i < nInUse; i++) {
1561 10 1. generateMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
2. generateMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
3. generateMTFValues : Decremented (--a) integer local variable number 2 → TIMED_OUT
4. generateMTFValues : Negated integer local variable number 3 → KILLED
5. generateMTFValues : Negated integer local variable number 3 → KILLED
6. generateMTFValues : Incremented (a++) integer local variable number 2 → KILLED
7. generateMTFValues : Incremented (a++) integer local variable number 2 → KILLED
8. generateMTFValues : Incremented (++a) integer local variable number 2 → KILLED
9. generateMTFValues : Incremented (++a) integer local variable number 2 → KILLED
10. generateMTFValues : Decremented (--a) integer local variable number 2 → KILLED
            yy[i] = (char) i;
1562
        }
1563
1564
1565 26 1. generateMTFValues : changed conditional boundary → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : negated conditional → SURVIVED
4. generateMTFValues : removed conditional - replaced comparison check with false → SURVIVED
5. generateMTFValues : Negated integer field last → SURVIVED
6. generateMTFValues : Substituted 0 with 1 → SURVIVED
7. generateMTFValues : Substituted 0 with 1 → SURVIVED
8. generateMTFValues : greater than to less than → SURVIVED
9. generateMTFValues : greater than to less or equal → SURVIVED
10. generateMTFValues : greater than to greater or equal → SURVIVED
11. generateMTFValues : greater than to equal → SURVIVED
12. generateMTFValues : greater than to not equal → SURVIVED
13. generateMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
14. generateMTFValues : Decremented (a--) integer field last → SURVIVED
15. generateMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
16. generateMTFValues : Decremented (--a) integer fieldlast → SURVIVED
17. generateMTFValues : Removed increment 1 → TIMED_OUT
18. generateMTFValues : Changed increment from 1 to -1 → KILLED
19. generateMTFValues : removed conditional - replaced comparison check with true → KILLED
20. generateMTFValues : Negated integer local variable number 3 → KILLED
21. generateMTFValues : Substituted 0 with -1 → KILLED
22. generateMTFValues : Substituted 0 with -1 → KILLED
23. generateMTFValues : Incremented (a++) integer field last → KILLED
24. generateMTFValues : Decremented (a--) integer local variable number 2 → KILLED
25. generateMTFValues : Incremented (++a) integer field last → KILLED
26. generateMTFValues : Decremented (--a) integer local variable number 2 → KILLED
        for (i = 0; i <= last; i++) {
1566
            char ll_i;
1567
1568 10 1. generateMTFValues : Incremented (a++) integer local variable number 2 → SURVIVED
2. generateMTFValues : Incremented (a++) integer array field → SURVIVED
3. generateMTFValues : Decremented (a--) integer array field → SURVIVED
4. generateMTFValues : Incremented (++a) integer local variable number 2 → SURVIVED
5. generateMTFValues : Incremented (++a) integer array field → SURVIVED
6. generateMTFValues : Decremented (a--) integer local variable number 2 → TIMED_OUT
7. generateMTFValues : Negated integer local variable number 3 → KILLED
8. generateMTFValues : Negated integer array field → KILLED
9. generateMTFValues : Decremented (--a) integer local variable number 2 → KILLED
10. generateMTFValues : Decremented (--a) integer array field → KILLED
            ll_i = unseqToSeq[block[zptr[i]]];
1569
1570 5 1. generateMTFValues : Substituted 0 with 1 → KILLED
2. generateMTFValues : Substituted 0 with 1 → KILLED
3. generateMTFValues : Substituted 0 with -1 → KILLED
4. generateMTFValues : Substituted 0 with 1 → KILLED
5. generateMTFValues : Substituted 0 with -1 → KILLED
            j = 0;
1571 5 1. generateMTFValues : Negated integer local variable number 7 → SURVIVED
2. generateMTFValues : Decremented (a--) integer local variable number 3 → SURVIVED
3. generateMTFValues : Incremented (a++) integer local variable number 3 → KILLED
4. generateMTFValues : Incremented (++a) integer local variable number 3 → KILLED
5. generateMTFValues : Decremented (--a) integer local variable number 3 → KILLED
            tmp = yy[j];
1572 18 1. generateMTFValues : negated conditional → SURVIVED
2. generateMTFValues : removed conditional - replaced equality check with false → SURVIVED
3. generateMTFValues : equal to less or equal → SURVIVED
4. generateMTFValues : equal to greater or equal → SURVIVED
5. generateMTFValues : equal to not equal → SURVIVED
6. generateMTFValues : removed conditional - replaced equality check with true → KILLED
7. generateMTFValues : Negated integer local variable number 6 → KILLED
8. generateMTFValues : Negated integer local variable number 8 → KILLED
9. generateMTFValues : equal to less than → KILLED
10. generateMTFValues : equal to greater than → KILLED
11. generateMTFValues : Incremented (a++) integer local variable number 9 → KILLED
12. generateMTFValues : Incremented (a++) integer local variable number 4 → KILLED
13. generateMTFValues : Decremented (a--) integer local variable number 9 → KILLED
14. generateMTFValues : Decremented (a--) integer local variable number 4 → KILLED
15. generateMTFValues : Incremented (++a) integer local variable number 9 → KILLED
16. generateMTFValues : Incremented (++a) integer local variable number 4 → KILLED
17. generateMTFValues : Decremented (--a) integer local variable number 9 → KILLED
18. generateMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            while (ll_i != tmp) {
1573 2 1. generateMTFValues : Removed increment 1 → TIMED_OUT
2. generateMTFValues : Changed increment from 1 to -1 → KILLED
                j++;
1574 5 1. generateMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
2. generateMTFValues : Decremented (a--) integer local variable number 4 → SURVIVED
3. generateMTFValues : Negated integer local variable number 8 → KILLED
4. generateMTFValues : Incremented (++a) integer local variable number 4 → KILLED
5. generateMTFValues : Decremented (--a) integer local variable number 4 → KILLED
                tmp2 = tmp;
1575 5 1. generateMTFValues : Decremented (a--) integer local variable number 3 → TIMED_OUT
2. generateMTFValues : Decremented (--a) integer local variable number 3 → TIMED_OUT
3. generateMTFValues : Negated integer local variable number 7 → KILLED
4. generateMTFValues : Incremented (a++) integer local variable number 3 → KILLED
5. generateMTFValues : Incremented (++a) integer local variable number 3 → KILLED
                tmp = yy[j];
1576 10 1. generateMTFValues : Incremented (a++) integer local variable number 5 → SURVIVED
2. generateMTFValues : Decremented (a--) integer local variable number 5 → SURVIVED
3. generateMTFValues : Decremented (a--) integer local variable number 3 → TIMED_OUT
4. generateMTFValues : Decremented (--a) integer local variable number 3 → TIMED_OUT
5. generateMTFValues : Negated integer local variable number 7 → KILLED
6. generateMTFValues : Negated integer local variable number 9 → KILLED
7. generateMTFValues : Incremented (a++) integer local variable number 3 → KILLED
8. generateMTFValues : Incremented (++a) integer local variable number 3 → KILLED
9. generateMTFValues : Incremented (++a) integer local variable number 5 → KILLED
10. generateMTFValues : Decremented (--a) integer local variable number 5 → KILLED
                yy[j] = tmp2;
1577
            }
1578 10 1. generateMTFValues : Incremented (a++) integer local variable number 4 → SURVIVED
2. generateMTFValues : Decremented (a--) integer local variable number 4 → SURVIVED
3. generateMTFValues : Substituted 0 with 1 → KILLED
4. generateMTFValues : Negated integer local variable number 8 → KILLED
5. generateMTFValues : Substituted 0 with 1 → KILLED
6. generateMTFValues : Substituted 0 with -1 → KILLED
7. generateMTFValues : Substituted 0 with 1 → KILLED
8. generateMTFValues : Substituted 0 with -1 → KILLED
9. generateMTFValues : Incremented (++a) integer local variable number 4 → KILLED
10. generateMTFValues : Decremented (--a) integer local variable number 4 → KILLED
            yy[0] = tmp;
1579
1580 13 1. generateMTFValues : negated conditional → SURVIVED
2. generateMTFValues : removed conditional - replaced equality check with false → SURVIVED
3. generateMTFValues : removed conditional - replaced equality check with true → SURVIVED
4. generateMTFValues : Negated integer local variable number 7 → SURVIVED
5. generateMTFValues : not equal to less than → SURVIVED
6. generateMTFValues : not equal to less or equal → SURVIVED
7. generateMTFValues : not equal to greater than → SURVIVED
8. generateMTFValues : not equal to greater or equal → SURVIVED
9. generateMTFValues : not equal to equal → SURVIVED
10. generateMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
11. generateMTFValues : Decremented (a--) integer local variable number 3 → SURVIVED
12. generateMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
13. generateMTFValues : Decremented (--a) integer local variable number 3 → SURVIVED
            if (j == 0) {
1581 2 1. generateMTFValues : Changed increment from 1 to -1 → SURVIVED
2. generateMTFValues : Removed increment 1 → SURVIVED
                zPend++;
1582
            } else {
1583 14 1. generateMTFValues : changed conditional boundary → SURVIVED
2. generateMTFValues : negated conditional → SURVIVED
3. generateMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. generateMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. generateMTFValues : Negated integer local variable number 5 → SURVIVED
6. generateMTFValues : Less or equal to less than → SURVIVED
7. generateMTFValues : Less or equal to greater than → SURVIVED
8. generateMTFValues : Less or equal to greater or equal → SURVIVED
9. generateMTFValues : Less or equal to equal → SURVIVED
10. generateMTFValues : Less or equal to not equal → SURVIVED
11. generateMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
12. generateMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
13. generateMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
14. generateMTFValues : Decremented (--a) integer local variable number 6 → SURVIVED
                if (zPend > 0) {
1584 2 1. generateMTFValues : Changed increment from -1 to 1 → SURVIVED
2. generateMTFValues : Removed increment -1 → SURVIVED
                    zPend--;
1585
                    while (true) {
1586 22 1. generateMTFValues : Substituted 2 with 3 → SURVIVED
2. generateMTFValues : Replaced integer modulus with multiplication → SURVIVED
3. generateMTFValues : RemoveSwitch 0 mutation → SURVIVED
4. generateMTFValues : RemoveSwitch 1 mutation → SURVIVED
5. generateMTFValues : Changed switch default to be first case → SURVIVED
6. generateMTFValues : Negated integer local variable number 5 → SURVIVED
7. generateMTFValues : Replaced integer operation with first member → SURVIVED
8. generateMTFValues : Replaced integer operation by second member → SURVIVED
9. generateMTFValues : Replaced integer modulus with multiplication → SURVIVED
10. generateMTFValues : Replaced integer modulus with division → SURVIVED
11. generateMTFValues : Replaced integer modulus with addition → SURVIVED
12. generateMTFValues : Replaced integer modulus with subtraction → SURVIVED
13. generateMTFValues : Substituted 2 with 1 → SURVIVED
14. generateMTFValues : Substituted 2 with -1 → SURVIVED
15. generateMTFValues : Substituted 2 with -2 → SURVIVED
16. generateMTFValues : Substituted 2 with 3 → SURVIVED
17. generateMTFValues : Substituted 2 with 1 → SURVIVED
18. generateMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
19. generateMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
20. generateMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
21. generateMTFValues : Decremented (--a) integer local variable number 6 → SURVIVED
22. generateMTFValues : Substituted 2 with 0 → KILLED
                        switch (zPend % 2) {
1587
                        case 0:
1588 10 1. generateMTFValues : Substituted 0 with 1 → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : Substituted 0 with 1 → SURVIVED
4. generateMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
5. generateMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
6. generateMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
7. generateMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
8. generateMTFValues : Negated integer local variable number 4 → KILLED
9. generateMTFValues : Substituted 0 with -1 → KILLED
10. generateMTFValues : Substituted 0 with -1 → KILLED
                            szptr[wr] = (short) RUNA;
1589 2 1. generateMTFValues : Changed increment from 1 to -1 → SURVIVED
2. generateMTFValues : Removed increment 1 → SURVIVED
                            wr++;
1590 23 1. generateMTFValues : Substituted 0 with 1 → SURVIVED
2. generateMTFValues : Substituted 1 with 0 → SURVIVED
3. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
4. generateMTFValues : Negated integer array field → SURVIVED
5. generateMTFValues : Replaced integer operation with first member → SURVIVED
6. generateMTFValues : Replaced integer operation by second member → SURVIVED
7. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
8. generateMTFValues : Replaced integer addition with multiplication → SURVIVED
9. generateMTFValues : Replaced integer addition with division → SURVIVED
10. generateMTFValues : Replaced integer addition with modulus → SURVIVED
11. generateMTFValues : Substituted 0 with 1 → SURVIVED
12. generateMTFValues : Substituted 1 with 0 → SURVIVED
13. generateMTFValues : Substituted 1 with -1 → SURVIVED
14. generateMTFValues : Substituted 1 with -1 → SURVIVED
15. generateMTFValues : Substituted 0 with 1 → SURVIVED
16. generateMTFValues : Substituted 1 with 2 → SURVIVED
17. generateMTFValues : Substituted 1 with 0 → SURVIVED
18. generateMTFValues : Incremented (a++) integer array field → SURVIVED
19. generateMTFValues : Decremented (a--) integer array field → SURVIVED
20. generateMTFValues : Incremented (++a) integer array field → SURVIVED
21. generateMTFValues : Decremented (--a) integer array field → SURVIVED
22. generateMTFValues : Substituted 0 with -1 → KILLED
23. generateMTFValues : Substituted 0 with -1 → KILLED
                            mtfFreq[RUNA]++;
1591
                            break;
1592
                        case 1:
1593 11 1. generateMTFValues : Substituted 1 with 0 → SURVIVED
2. generateMTFValues : Substituted 1 with 0 → SURVIVED
3. generateMTFValues : Substituted 1 with 2 → SURVIVED
4. generateMTFValues : Substituted 1 with 0 → SURVIVED
5. generateMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
6. generateMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
7. generateMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
8. generateMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
9. generateMTFValues : Negated integer local variable number 4 → KILLED
10. generateMTFValues : Substituted 1 with -1 → KILLED
11. generateMTFValues : Substituted 1 with -1 → KILLED
                            szptr[wr] = (short) RUNB;
1594 2 1. generateMTFValues : Removed increment 1 → SURVIVED
2. generateMTFValues : Changed increment from 1 to -1 → KILLED
                            wr++;
1595 24 1. generateMTFValues : Substituted 1 with 0 → SURVIVED
2. generateMTFValues : Substituted 1 with 0 → SURVIVED
3. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
4. generateMTFValues : Negated integer array field → SURVIVED
5. generateMTFValues : Replaced integer operation with first member → SURVIVED
6. generateMTFValues : Replaced integer operation by second member → SURVIVED
7. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
8. generateMTFValues : Replaced integer addition with multiplication → SURVIVED
9. generateMTFValues : Replaced integer addition with division → SURVIVED
10. generateMTFValues : Replaced integer addition with modulus → SURVIVED
11. generateMTFValues : Substituted 1 with 0 → SURVIVED
12. generateMTFValues : Substituted 1 with 0 → SURVIVED
13. generateMTFValues : Substituted 1 with -1 → SURVIVED
14. generateMTFValues : Substituted 1 with -1 → SURVIVED
15. generateMTFValues : Substituted 1 with 2 → SURVIVED
16. generateMTFValues : Substituted 1 with 2 → SURVIVED
17. generateMTFValues : Substituted 1 with 0 → SURVIVED
18. generateMTFValues : Substituted 1 with 0 → SURVIVED
19. generateMTFValues : Incremented (a++) integer array field → SURVIVED
20. generateMTFValues : Decremented (a--) integer array field → SURVIVED
21. generateMTFValues : Incremented (++a) integer array field → SURVIVED
22. generateMTFValues : Decremented (--a) integer array field → SURVIVED
23. generateMTFValues : Substituted 1 with -1 → KILLED
24. generateMTFValues : Substituted 1 with -1 → KILLED
                            mtfFreq[RUNB]++;
1596
                            break;
1597
                        }
1598 21 1. generateMTFValues : changed conditional boundary → SURVIVED
2. generateMTFValues : Substituted 2 with 3 → SURVIVED
3. generateMTFValues : negated conditional → SURVIVED
4. generateMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. generateMTFValues : Negated integer local variable number 5 → SURVIVED
6. generateMTFValues : Substituted 2 with 1 → SURVIVED
7. generateMTFValues : Substituted 2 with 0 → SURVIVED
8. generateMTFValues : Substituted 2 with 3 → SURVIVED
9. generateMTFValues : Substituted 2 with 1 → SURVIVED
10. generateMTFValues : greater or equal to less than → SURVIVED
11. generateMTFValues : greater or equal to less or equal → SURVIVED
12. generateMTFValues : greater or equal to greater than → SURVIVED
13. generateMTFValues : greater or equal to equal → SURVIVED
14. generateMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
15. generateMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
16. generateMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
17. generateMTFValues : Decremented (--a) integer local variable number 6 → SURVIVED
18. generateMTFValues : removed conditional - replaced comparison check with false → TIMED_OUT
19. generateMTFValues : Substituted 2 with -1 → TIMED_OUT
20. generateMTFValues : Substituted 2 with -2 → TIMED_OUT
21. generateMTFValues : greater or equal to not equal → TIMED_OUT
                        if (zPend < 2) {
1599
                            break;
1600
                        }
1601 33 1. generateMTFValues : Substituted 2 with 3 → SURVIVED
2. generateMTFValues : Substituted 2 with 3 → SURVIVED
3. generateMTFValues : Replaced integer division with multiplication → SURVIVED
4. generateMTFValues : Negated integer local variable number 5 → SURVIVED
5. generateMTFValues : Replaced integer operation with first member → SURVIVED
6. generateMTFValues : Replaced integer operation with first member → SURVIVED
7. generateMTFValues : Replaced integer operation by second member → SURVIVED
8. generateMTFValues : Replaced integer division with multiplication → SURVIVED
9. generateMTFValues : Replaced integer division with modulus → SURVIVED
10. generateMTFValues : Replaced integer subtraction with division → SURVIVED
11. generateMTFValues : Replaced integer subtraction with modulus → SURVIVED
12. generateMTFValues : Replaced integer division with subtraction → SURVIVED
13. generateMTFValues : Substituted 2 with 1 → SURVIVED
14. generateMTFValues : Substituted 2 with 1 → SURVIVED
15. generateMTFValues : Substituted 2 with 0 → SURVIVED
16. generateMTFValues : Substituted 2 with -1 → SURVIVED
17. generateMTFValues : Substituted 2 with -1 → SURVIVED
18. generateMTFValues : Substituted 2 with -2 → SURVIVED
19. generateMTFValues : Substituted 2 with 3 → SURVIVED
20. generateMTFValues : Substituted 2 with 3 → SURVIVED
21. generateMTFValues : Substituted 2 with 1 → SURVIVED
22. generateMTFValues : Substituted 2 with 1 → SURVIVED
23. generateMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
24. generateMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
25. generateMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
26. generateMTFValues : Decremented (--a) integer local variable number 6 → SURVIVED
27. generateMTFValues : Replaced integer subtraction with addition → KILLED
28. generateMTFValues : Replaced integer operation by second member → KILLED
29. generateMTFValues : Replaced integer subtraction with addition → KILLED
30. generateMTFValues : Replaced integer subtraction with multiplication → KILLED
31. generateMTFValues : Replaced integer division with addition → KILLED
32. generateMTFValues : Substituted 2 with 0 → KILLED
33. generateMTFValues : Substituted 2 with -2 → KILLED
                        zPend = (zPend - 2) / 2;
1602
                    }
1603 5 1. generateMTFValues : Substituted 0 with 1 → SURVIVED
2. generateMTFValues : Substituted 0 with 1 → SURVIVED
3. generateMTFValues : Substituted 0 with -1 → SURVIVED
4. generateMTFValues : Substituted 0 with 1 → SURVIVED
5. generateMTFValues : Substituted 0 with -1 → SURVIVED
                    zPend = 0;
1604
                }
1605 23 1. generateMTFValues : Substituted 1 with 0 → SURVIVED
2. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
3. generateMTFValues : Replaced integer operation with first member → SURVIVED
4. generateMTFValues : Replaced integer operation by second member → SURVIVED
5. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
6. generateMTFValues : Replaced integer addition with multiplication → SURVIVED
7. generateMTFValues : Replaced integer addition with division → SURVIVED
8. generateMTFValues : Replaced integer addition with modulus → SURVIVED
9. generateMTFValues : Substituted 1 with 0 → SURVIVED
10. generateMTFValues : Substituted 1 with -1 → SURVIVED
11. generateMTFValues : Substituted 1 with -1 → SURVIVED
12. generateMTFValues : Substituted 1 with 2 → SURVIVED
13. generateMTFValues : Substituted 1 with 0 → SURVIVED
14. generateMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
15. generateMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
16. generateMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
17. generateMTFValues : Decremented (a--) integer local variable number 3 → SURVIVED
18. generateMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
19. generateMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
20. generateMTFValues : Decremented (--a) integer local variable number 3 → SURVIVED
21. generateMTFValues : Negated integer local variable number 4 → KILLED
22. generateMTFValues : Negated integer local variable number 7 → KILLED
23. generateMTFValues : Decremented (--a) integer local variable number 7 → KILLED
                szptr[wr] = (short) (j + 1);
1606 2 1. generateMTFValues : Removed increment 1 → SURVIVED
2. generateMTFValues : Changed increment from 1 to -1 → KILLED
                wr++;
1607 36 1. generateMTFValues : Substituted 1 with 0 → SURVIVED
2. generateMTFValues : Substituted 1 with 0 → SURVIVED
3. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
4. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
5. generateMTFValues : Negated integer array field → SURVIVED
6. generateMTFValues : Replaced integer operation with first member → SURVIVED
7. generateMTFValues : Replaced integer operation with first member → SURVIVED
8. generateMTFValues : Replaced integer operation by second member → SURVIVED
9. generateMTFValues : Replaced integer operation by second member → SURVIVED
10. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
11. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
12. generateMTFValues : Replaced integer addition with multiplication → SURVIVED
13. generateMTFValues : Replaced integer addition with multiplication → SURVIVED
14. generateMTFValues : Replaced integer addition with division → SURVIVED
15. generateMTFValues : Replaced integer addition with division → SURVIVED
16. generateMTFValues : Replaced integer addition with modulus → SURVIVED
17. generateMTFValues : Replaced integer addition with modulus → SURVIVED
18. generateMTFValues : Substituted 1 with 0 → SURVIVED
19. generateMTFValues : Substituted 1 with 0 → SURVIVED
20. generateMTFValues : Substituted 1 with -1 → SURVIVED
21. generateMTFValues : Substituted 1 with -1 → SURVIVED
22. generateMTFValues : Substituted 1 with -1 → SURVIVED
23. generateMTFValues : Substituted 1 with -1 → SURVIVED
24. generateMTFValues : Substituted 1 with 2 → SURVIVED
25. generateMTFValues : Substituted 1 with 2 → SURVIVED
26. generateMTFValues : Substituted 1 with 0 → SURVIVED
27. generateMTFValues : Substituted 1 with 0 → SURVIVED
28. generateMTFValues : Incremented (a++) integer local variable number 3 → SURVIVED
29. generateMTFValues : Incremented (a++) integer array field → SURVIVED
30. generateMTFValues : Decremented (a--) integer local variable number 3 → SURVIVED
31. generateMTFValues : Decremented (a--) integer array field → SURVIVED
32. generateMTFValues : Incremented (++a) integer local variable number 3 → SURVIVED
33. generateMTFValues : Incremented (++a) integer array field → SURVIVED
34. generateMTFValues : Decremented (--a) integer local variable number 3 → SURVIVED
35. generateMTFValues : Decremented (--a) integer array field → SURVIVED
36. generateMTFValues : Negated integer local variable number 7 → KILLED
                mtfFreq[j + 1]++;
1608
            }
1609
        }
1610
1611 14 1. generateMTFValues : changed conditional boundary → SURVIVED
2. generateMTFValues : negated conditional → SURVIVED
3. generateMTFValues : removed conditional - replaced comparison check with false → SURVIVED
4. generateMTFValues : removed conditional - replaced comparison check with true → SURVIVED
5. generateMTFValues : Negated integer local variable number 5 → SURVIVED
6. generateMTFValues : Less or equal to less than → SURVIVED
7. generateMTFValues : Less or equal to greater than → SURVIVED
8. generateMTFValues : Less or equal to greater or equal → SURVIVED
9. generateMTFValues : Less or equal to equal → SURVIVED
10. generateMTFValues : Less or equal to not equal → SURVIVED
11. generateMTFValues : Incremented (a++) integer local variable number 6 → SURVIVED
12. generateMTFValues : Decremented (a--) integer local variable number 6 → SURVIVED
13. generateMTFValues : Incremented (++a) integer local variable number 6 → SURVIVED
14. generateMTFValues : Decremented (--a) integer local variable number 6 → SURVIVED
        if (zPend > 0) {
1612 2 1. generateMTFValues : Changed increment from -1 to 1 → NO_COVERAGE
2. generateMTFValues : Removed increment -1 → NO_COVERAGE
            zPend--;
1613
            while (true) {
1614 22 1. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
2. generateMTFValues : Replaced integer modulus with multiplication → NO_COVERAGE
3. generateMTFValues : RemoveSwitch 0 mutation → NO_COVERAGE
4. generateMTFValues : RemoveSwitch 1 mutation → NO_COVERAGE
5. generateMTFValues : Changed switch default to be first case → NO_COVERAGE
6. generateMTFValues : Negated integer local variable number 5 → NO_COVERAGE
7. generateMTFValues : Replaced integer operation with first member → NO_COVERAGE
8. generateMTFValues : Replaced integer operation by second member → NO_COVERAGE
9. generateMTFValues : Replaced integer modulus with multiplication → NO_COVERAGE
10. generateMTFValues : Replaced integer modulus with division → NO_COVERAGE
11. generateMTFValues : Replaced integer modulus with addition → NO_COVERAGE
12. generateMTFValues : Replaced integer modulus with subtraction → NO_COVERAGE
13. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
14. generateMTFValues : Substituted 2 with 0 → NO_COVERAGE
15. generateMTFValues : Substituted 2 with -1 → NO_COVERAGE
16. generateMTFValues : Substituted 2 with -2 → NO_COVERAGE
17. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
18. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
19. generateMTFValues : Incremented (a++) integer local variable number 6 → NO_COVERAGE
20. generateMTFValues : Decremented (a--) integer local variable number 6 → NO_COVERAGE
21. generateMTFValues : Incremented (++a) integer local variable number 6 → NO_COVERAGE
22. generateMTFValues : Decremented (--a) integer local variable number 6 → NO_COVERAGE
                switch (zPend % 2) {
1615
                case 0:
1616 10 1. generateMTFValues : Substituted 0 with 1 → NO_COVERAGE
2. generateMTFValues : Negated integer local variable number 4 → NO_COVERAGE
3. generateMTFValues : Substituted 0 with 1 → NO_COVERAGE
4. generateMTFValues : Substituted 0 with -1 → NO_COVERAGE
5. generateMTFValues : Substituted 0 with 1 → NO_COVERAGE
6. generateMTFValues : Substituted 0 with -1 → NO_COVERAGE
7. generateMTFValues : Incremented (a++) integer local variable number 7 → NO_COVERAGE
8. generateMTFValues : Decremented (a--) integer local variable number 7 → NO_COVERAGE
9. generateMTFValues : Incremented (++a) integer local variable number 7 → NO_COVERAGE
10. generateMTFValues : Decremented (--a) integer local variable number 7 → NO_COVERAGE
                    szptr[wr] = (short) RUNA;
1617 2 1. generateMTFValues : Changed increment from 1 to -1 → NO_COVERAGE
2. generateMTFValues : Removed increment 1 → NO_COVERAGE
                    wr++;
1618 23 1. generateMTFValues : Substituted 0 with 1 → NO_COVERAGE
2. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
3. generateMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
4. generateMTFValues : Negated integer array field → NO_COVERAGE
5. generateMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. generateMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. generateMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. generateMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. generateMTFValues : Replaced integer addition with division → NO_COVERAGE
10. generateMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. generateMTFValues : Substituted 0 with 1 → NO_COVERAGE
12. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
13. generateMTFValues : Substituted 0 with -1 → NO_COVERAGE
14. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
15. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
16. generateMTFValues : Substituted 0 with 1 → NO_COVERAGE
17. generateMTFValues : Substituted 1 with 2 → NO_COVERAGE
18. generateMTFValues : Substituted 0 with -1 → NO_COVERAGE
19. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
20. generateMTFValues : Incremented (a++) integer array field → NO_COVERAGE
21. generateMTFValues : Decremented (a--) integer array field → NO_COVERAGE
22. generateMTFValues : Incremented (++a) integer array field → NO_COVERAGE
23. generateMTFValues : Decremented (--a) integer array field → NO_COVERAGE
                    mtfFreq[RUNA]++;
1619
                    break;
1620
                case 1:
1621 11 1. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
2. generateMTFValues : Negated integer local variable number 4 → NO_COVERAGE
3. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
4. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
5. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
6. generateMTFValues : Substituted 1 with 2 → NO_COVERAGE
7. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
8. generateMTFValues : Incremented (a++) integer local variable number 7 → NO_COVERAGE
9. generateMTFValues : Decremented (a--) integer local variable number 7 → NO_COVERAGE
10. generateMTFValues : Incremented (++a) integer local variable number 7 → NO_COVERAGE
11. generateMTFValues : Decremented (--a) integer local variable number 7 → NO_COVERAGE
                    szptr[wr] = (short) RUNB;
1622 2 1. generateMTFValues : Changed increment from 1 to -1 → NO_COVERAGE
2. generateMTFValues : Removed increment 1 → NO_COVERAGE
                    wr++;
1623 24 1. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
2. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
3. generateMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
4. generateMTFValues : Negated integer array field → NO_COVERAGE
5. generateMTFValues : Replaced integer operation with first member → NO_COVERAGE
6. generateMTFValues : Replaced integer operation by second member → NO_COVERAGE
7. generateMTFValues : Replaced integer addition with subtraction → NO_COVERAGE
8. generateMTFValues : Replaced integer addition with multiplication → NO_COVERAGE
9. generateMTFValues : Replaced integer addition with division → NO_COVERAGE
10. generateMTFValues : Replaced integer addition with modulus → NO_COVERAGE
11. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
12. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
13. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
14. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
15. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
16. generateMTFValues : Substituted 1 with -1 → NO_COVERAGE
17. generateMTFValues : Substituted 1 with 2 → NO_COVERAGE
18. generateMTFValues : Substituted 1 with 2 → NO_COVERAGE
19. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
20. generateMTFValues : Substituted 1 with 0 → NO_COVERAGE
21. generateMTFValues : Incremented (a++) integer array field → NO_COVERAGE
22. generateMTFValues : Decremented (a--) integer array field → NO_COVERAGE
23. generateMTFValues : Incremented (++a) integer array field → NO_COVERAGE
24. generateMTFValues : Decremented (--a) integer array field → NO_COVERAGE
                    mtfFreq[RUNB]++;
1624
                    break;
1625
                }
1626 21 1. generateMTFValues : changed conditional boundary → NO_COVERAGE
2. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
3. generateMTFValues : negated conditional → NO_COVERAGE
4. generateMTFValues : removed conditional - replaced comparison check with false → NO_COVERAGE
5. generateMTFValues : removed conditional - replaced comparison check with true → NO_COVERAGE
6. generateMTFValues : Negated integer local variable number 5 → NO_COVERAGE
7. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
8. generateMTFValues : Substituted 2 with 0 → NO_COVERAGE
9. generateMTFValues : Substituted 2 with -1 → NO_COVERAGE
10. generateMTFValues : Substituted 2 with -2 → NO_COVERAGE
11. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
12. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
13. generateMTFValues : greater or equal to less than → NO_COVERAGE
14. generateMTFValues : greater or equal to less or equal → NO_COVERAGE
15. generateMTFValues : greater or equal to greater than → NO_COVERAGE
16. generateMTFValues : greater or equal to equal → NO_COVERAGE
17. generateMTFValues : greater or equal to not equal → NO_COVERAGE
18. generateMTFValues : Incremented (a++) integer local variable number 6 → NO_COVERAGE
19. generateMTFValues : Decremented (a--) integer local variable number 6 → NO_COVERAGE
20. generateMTFValues : Incremented (++a) integer local variable number 6 → NO_COVERAGE
21. generateMTFValues : Decremented (--a) integer local variable number 6 → NO_COVERAGE
                if (zPend < 2) {
1627
                    break;
1628
                }
1629 33 1. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
2. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
3. generateMTFValues : Replaced integer subtraction with addition → NO_COVERAGE
4. generateMTFValues : Replaced integer division with multiplication → NO_COVERAGE
5. generateMTFValues : Negated integer local variable number 5 → NO_COVERAGE
6. generateMTFValues : Replaced integer operation with first member → NO_COVERAGE
7. generateMTFValues : Replaced integer operation with first member → NO_COVERAGE
8. generateMTFValues : Replaced integer operation by second member → NO_COVERAGE
9. generateMTFValues : Replaced integer operation by second member → NO_COVERAGE
10. generateMTFValues : Replaced integer subtraction with addition → NO_COVERAGE
11. generateMTFValues : Replaced integer division with multiplication → NO_COVERAGE
12. generateMTFValues : Replaced integer subtraction with multiplication → NO_COVERAGE
13. generateMTFValues : Replaced integer division with modulus → NO_COVERAGE
14. generateMTFValues : Replaced integer subtraction with division → NO_COVERAGE
15. generateMTFValues : Replaced integer division with addition → NO_COVERAGE
16. generateMTFValues : Replaced integer subtraction with modulus → NO_COVERAGE
17. generateMTFValues : Replaced integer division with subtraction → NO_COVERAGE
18. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
19. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
20. generateMTFValues : Substituted 2 with 0 → NO_COVERAGE
21. generateMTFValues : Substituted 2 with 0 → NO_COVERAGE
22. generateMTFValues : Substituted 2 with -1 → NO_COVERAGE
23. generateMTFValues : Substituted 2 with -1 → NO_COVERAGE
24. generateMTFValues : Substituted 2 with -2 → NO_COVERAGE
25. generateMTFValues : Substituted 2 with -2 → NO_COVERAGE
26. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
27. generateMTFValues : Substituted 2 with 3 → NO_COVERAGE
28. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
29. generateMTFValues : Substituted 2 with 1 → NO_COVERAGE
30. generateMTFValues : Incremented (a++) integer local variable number 6 → NO_COVERAGE
31. generateMTFValues : Decremented (a--) integer local variable number 6 → NO_COVERAGE
32. generateMTFValues : Incremented (++a) integer local variable number 6 → NO_COVERAGE
33. generateMTFValues : Decremented (--a) integer local variable number 6 → NO_COVERAGE
                zPend = (zPend - 2) / 2;
1630
            }
1631
        }
1632
1633 10 1. generateMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
2. generateMTFValues : Incremented (a++) integer local variable number 8 → SURVIVED
3. generateMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
4. generateMTFValues : Decremented (a--) integer local variable number 8 → SURVIVED
5. generateMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
6. generateMTFValues : Incremented (++a) integer local variable number 8 → SURVIVED
7. generateMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
8. generateMTFValues : Decremented (--a) integer local variable number 8 → SURVIVED
9. generateMTFValues : Negated integer local variable number 4 → KILLED
10. generateMTFValues : Negated integer local variable number 2 → KILLED
        szptr[wr] = (short) EOB;
1634 2 1. generateMTFValues : Changed increment from 1 to -1 → SURVIVED
2. generateMTFValues : Removed increment 1 → SURVIVED
        wr++;
1635 23 1. generateMTFValues : Substituted 1 with 0 → SURVIVED
2. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
3. generateMTFValues : Negated integer array field → SURVIVED
4. generateMTFValues : Replaced integer operation with first member → SURVIVED
5. generateMTFValues : Replaced integer operation by second member → SURVIVED
6. generateMTFValues : Replaced integer addition with subtraction → SURVIVED
7. generateMTFValues : Replaced integer addition with multiplication → SURVIVED
8. generateMTFValues : Replaced integer addition with division → SURVIVED
9. generateMTFValues : Replaced integer addition with modulus → SURVIVED
10. generateMTFValues : Substituted 1 with 0 → SURVIVED
11. generateMTFValues : Substituted 1 with -1 → SURVIVED
12. generateMTFValues : Substituted 1 with -1 → SURVIVED
13. generateMTFValues : Substituted 1 with 2 → SURVIVED
14. generateMTFValues : Substituted 1 with 0 → SURVIVED
15. generateMTFValues : Incremented (a++) integer local variable number 8 → SURVIVED
16. generateMTFValues : Incremented (a++) integer array field → SURVIVED
17. generateMTFValues : Decremented (a--) integer local variable number 8 → SURVIVED
18. generateMTFValues : Decremented (a--) integer array field → SURVIVED
19. generateMTFValues : Incremented (++a) integer local variable number 8 → SURVIVED
20. generateMTFValues : Incremented (++a) integer array field → SURVIVED
21. generateMTFValues : Decremented (--a) integer local variable number 8 → SURVIVED
22. generateMTFValues : Decremented (--a) integer array field → SURVIVED
23. generateMTFValues : Negated integer local variable number 2 → KILLED
        mtfFreq[EOB]++;
1636
1637 6 1. generateMTFValues : Removed assignment to member variable nMTF → SURVIVED
2. generateMTFValues : Negated integer local variable number 4 → SURVIVED
3. generateMTFValues : Incremented (a++) integer local variable number 7 → SURVIVED
4. generateMTFValues : Decremented (a--) integer local variable number 7 → SURVIVED
5. generateMTFValues : Incremented (++a) integer local variable number 7 → SURVIVED
6. generateMTFValues : Decremented (--a) integer local variable number 7 → SURVIVED
        nMTF = wr;
1638
    }
1639
}

Mutations

49

1.1
Location : panic
Killed by : none
removed call to java/io/PrintStream::println → NO_COVERAGE

55

1.1
Location : makeMaps
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : makeMaps
Killed by : none
Removed assignment to member variable nInUse → SURVIVED

3.3
Location : makeMaps
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

5.5
Location : makeMaps
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

56

1.1
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : makeMaps
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 257 → KILLED

5.5
Location : makeMaps
Killed by : none
negated conditional → SURVIVED

6.6
Location : makeMaps
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

8.8
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

9.9
Location : makeMaps
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : makeMaps
Killed by : none
Substituted 256 with 1 → SURVIVED

11.11
Location : makeMaps
Killed by : none
Substituted 256 with 0 → SURVIVED

12.12
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : makeMaps
Killed by : none
Substituted 256 with -1 → SURVIVED

14.14
Location : makeMaps
Killed by : none
Substituted 256 with -256 → SURVIVED

15.15
Location : makeMaps
Killed by : none
Substituted 0 with 1 → SURVIVED

16.16
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 257 → KILLED

17.17
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

18.18
Location : makeMaps
Killed by : none
Substituted 256 with 255 → SURVIVED

19.19
Location : makeMaps
Killed by : none
greater or equal to less than → SURVIVED

20.20
Location : makeMaps
Killed by : none
greater or equal to less or equal → SURVIVED

21.21
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

22.22
Location : makeMaps
Killed by : none
greater or equal to equal → SURVIVED

23.23
Location : makeMaps
Killed by : none
greater or equal to not equal → SURVIVED

24.24
Location : makeMaps
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

25.25
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

26.26
Location : makeMaps
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

27.27
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

57

1.1
Location : makeMaps
Killed by : none
negated conditional → SURVIVED

2.2
Location : makeMaps
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : makeMaps
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

5.5
Location : makeMaps
Killed by : none
Negated byte array field → SURVIVED

6.6
Location : makeMaps
Killed by : none
equal to less than → SURVIVED

7.7
Location : makeMaps
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : makeMaps
Killed by : none
equal to greater than → SURVIVED

9.9
Location : makeMaps
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : makeMaps
Killed by : none
equal to not equal → SURVIVED

11.11
Location : makeMaps
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

12.12
Location : makeMaps
Killed by : none
Incremented (a++) byte array field → SURVIVED

13.13
Location : makeMaps
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

14.14
Location : makeMaps
Killed by : none
Decremented (a--) byte array field → SURVIVED

15.15
Location : makeMaps
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

16.16
Location : makeMaps
Killed by : none
Incremented (++a) byte array field → SURVIVED

17.17
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

18.18
Location : makeMaps
Killed by : none
Decremented (--a) byte array field → SURVIVED

58

1.1
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field nInUse → KILLED

2.2
Location : makeMaps
Killed by : none
Negated integer local variable number 1 → SURVIVED

3.3
Location : makeMaps
Killed by : none
Incremented (a++) integer field nInUse → SURVIVED

4.4
Location : makeMaps
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

5.5
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer field nInUse → KILLED

6.6
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

7.7
Location : makeMaps
Killed by : none
Incremented (++a) integer field nInUse → SURVIVED

8.8
Location : makeMaps
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

9.9
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer fieldnInUse → KILLED

10.10
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

59

1.1
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

2.2
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field nInUse → KILLED

3.3
Location : makeMaps
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : makeMaps
Killed by : none
Incremented (a++) integer field nInUse → SURVIVED

5.5
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

6.6
Location : makeMaps
Killed by : none
Decremented (a--) integer field nInUse → SURVIVED

7.7
Location : makeMaps
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

8.8
Location : makeMaps
Killed by : none
Incremented (++a) integer field nInUse → SURVIVED

9.9
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

10.10
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer fieldnInUse → KILLED

60

1.1
Location : makeMaps
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : makeMaps
Killed by : none
Removed assignment to member variable nInUse → SURVIVED

4.4
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field nInUse → KILLED

5.5
Location : makeMaps
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

7.7
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

8.8
Location : makeMaps
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : makeMaps
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : makeMaps
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : makeMaps
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : makeMaps
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

14.14
Location : makeMaps
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : makeMaps
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : makeMaps
Killed by : none
Incremented (a++) integer field nInUse → SURVIVED

17.17
Location : makeMaps
Killed by : none
Decremented (a--) integer field nInUse → SURVIVED

18.18
Location : makeMaps
Killed by : none
Incremented (++a) integer field nInUse → SURVIVED

19.19
Location : makeMaps
Killed by : none
Decremented (--a) integer fieldnInUse → SURVIVED

74

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 261 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 260 with 1 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 260 with 0 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 260 with -1 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 260 with -260 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 261 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 259 → SURVIVED

75

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 517 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with 1 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with 0 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with -1 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with -516 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 517 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 515 → SURVIVED

76

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 517 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with 1 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with 0 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with -1 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 516 with -516 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 517 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 515 → SURVIVED

78

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 2 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 2 → KILLED

20.20
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 2 → KILLED

24.24
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

25.25
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

79

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 9 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Left with Shift Right → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

13.13
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → TIMED_OUT

14.14
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

17.17
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with multiplication → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with division → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with modulus → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 1 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 0 → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

25.25
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → TIMED_OUT

26.26
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with -1 → TIMED_OUT

27.27
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

28.28
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → TIMED_OUT

29.29
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with -8 → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 9 → SURVIVED

33.33
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

35.35
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 7 → SURVIVED

36.36
Location : hbMakeCodeLengths
Killed by : none
not equal to less than → SURVIVED

37.37
Location : hbMakeCodeLengths
Killed by : none
not equal to less or equal → SURVIVED

38.38
Location : hbMakeCodeLengths
Killed by : none
not equal to greater than → SURVIVED

39.39
Location : hbMakeCodeLengths
Killed by : none
not equal to greater or equal → SURVIVED

40.40
Location : hbMakeCodeLengths
Killed by : none
not equal to equal → SURVIVED

41.41
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

42.42
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

43.43
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

44.44
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

45.45
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

46.46
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

47.47
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 8 → TIMED_OUT

48.48
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

49.49
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 8 → TIMED_OUT

50.50
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

51.51
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

52.52
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

53.53
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

54.54
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

55.55
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

56.56
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

57.57
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

58.58
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → TIMED_OUT

59.59
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

60.60
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

83

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

84

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → TIMED_OUT

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → TIMED_OUT

86

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

87

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

88

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted -2 with -1 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted -2 with 1 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted -2 with 0 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted -2 with -1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted -2 with 2 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted -2 with -1 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted -2 with -3 → SURVIVED

90

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 2 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
greater than to less than → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
greater than to less or equal → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
greater than to greater or equal → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
greater than to equal → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
greater than to not equal → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 2 → KILLED

21.21
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

22.22
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 2 → KILLED

25.25
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

26.26
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

91

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 0 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 1 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 0 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with -2 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

92

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment 1 → SURVIVED

93

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

96

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

97

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → TIMED_OUT

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

98

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
negated conditional → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → TIMED_OUT

18.18
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → TIMED_OUT

19.19
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → TIMED_OUT

21.21
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 15 → KILLED

30.30
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

31.31
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

33.33
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → TIMED_OUT

35.35
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

36.36
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

37.37
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → SURVIVED

38.38
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

39.39
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 15 → KILLED

40.40
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

41.41
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

99

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 15 → KILLED

15.15
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 15 → KILLED

16.16
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 15 → KILLED

21.21
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 15 → KILLED

22.22
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

100

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced Shift Right with Shift Left → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → TIMED_OUT

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → TIMED_OUT

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → TIMED_OUT

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 15 → KILLED

102

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → TIMED_OUT

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → SURVIVED

105

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 261 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 9 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 0 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with -1 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with -260 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 261 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 260 with 259 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Less than to less or equal → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Less than to greater than → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Less than to greater or equal → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Less than to equal → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Less than to not equal → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

106

1.1
Location : hbMakeCodeLengths
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

109

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 9 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Less or equal to less than → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Less or equal to greater than → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Less or equal to greater or equal → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Less or equal to equal → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Less or equal to not equal → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

20.20
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

110

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

111

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

14.14
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

112

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from -1 to 1 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment -1 → TIMED_OUT

114

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

115

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

116

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → TIMED_OUT

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → TIMED_OUT

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

118

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Left with Shift Right → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 15 → KILLED

119

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 9 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Less or equal to less than → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater than → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater or equal → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : none
Less or equal to equal → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to not equal → KILLED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

19.19
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

122

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 11 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 9 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

14.14
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

15.15
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

17.17
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

18.18
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with multiplication → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with division → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with modulus → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → SURVIVED

33.33
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

35.35
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

36.36
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → SURVIVED

37.37
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → SURVIVED

38.38
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

39.39
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

40.40
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

41.41
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

42.42
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

43.43
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

44.44
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

45.45
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

46.46
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

47.47
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

48.48
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

49.49
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

50.50
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

51.51
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

52.52
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

53.53
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

54.54
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

55.55
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

56.56
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

57.57
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

58.58
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

59.59
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

60.60
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

61.61
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

62.62
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

63.63
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

64.64
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

65.65
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

66.66
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

67.67
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

68.68
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

69.69
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

70.70
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

71.71
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

124

1.1
Location : hbMakeCodeLengths
Killed by : none
Changed increment from 1 to -1 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment 1 → SURVIVED

126

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 13 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 17 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

23.23
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

33.33
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

129

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

130

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

132

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 13 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 17 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

134

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

135

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

14.14
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

136

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from -1 to 1 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment -1 → TIMED_OUT

138

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

139

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

140

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → TIMED_OUT

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → TIMED_OUT

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

142

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Left with Shift Right → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 15 → KILLED

143

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 9 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Less or equal to less than → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater than → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater or equal → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : none
Less or equal to equal → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to not equal → KILLED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

19.19
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

146

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 11 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 9 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

14.14
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

15.15
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

17.17
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

18.18
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with multiplication → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with division → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with modulus → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → SURVIVED

33.33
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

35.35
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

36.36
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → SURVIVED

37.37
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → SURVIVED

38.38
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

39.39
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

40.40
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

41.41
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

42.42
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

43.43
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

44.44
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

45.45
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

46.46
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

47.47
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

48.48
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

49.49
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

50.50
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

51.51
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

52.52
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

53.53
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

54.54
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

55.55
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

56.56
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

57.57
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

58.58
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

59.59
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

60.60
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

61.61
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

62.62
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

63.63
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

64.64
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

65.65
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

66.66
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

67.67
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

68.68
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

69.69
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

70.70
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

71.71
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

148

1.1
Location : hbMakeCodeLengths
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment 1 → NO_COVERAGE

150

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 13 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

23.23
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

33.33
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

153

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → TIMED_OUT

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

154

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → TIMED_OUT

156

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 13 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 17 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

158

1.1
Location : hbMakeCodeLengths
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment 1 → SURVIVED

159

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 12 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 14 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 8 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

161

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -255 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -255 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Replaced bitwise AND with OR → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Replaced bitwise AND with OR → TIMED_OUT

6.6
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → TIMED_OUT

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 12 → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 14 → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → TIMED_OUT

12.12
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → TIMED_OUT

15.15
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with multiplication → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with division → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with modulus → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with 1 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with 1 → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with 0 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with 0 → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -1 → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -1 → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → TIMED_OUT

26.26
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with 256 → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with 256 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → TIMED_OUT

29.29
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -255 → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -255 → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -257 → SURVIVED

33.33
Location : hbMakeCodeLengths
Killed by : none
Substituted -256 with -257 → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

35.35
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and with or → SURVIVED

36.36
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and with or → TIMED_OUT

37.37
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and by first member → SURVIVED

38.38
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and by first member → SURVIVED

39.39
Location : hbMakeCodeLengths
Killed by : none
Replace integer and by second member → SURVIVED

40.40
Location : hbMakeCodeLengths
Killed by : none
Replace integer and by second member → TIMED_OUT

41.41
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

42.42
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

43.43
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

44.44
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

45.45
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

46.46
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

47.47
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

48.48
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

49.49
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

50.50
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

51.51
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

52.52
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

53.53
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

54.54
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

55.55
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

56.56
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

57.57
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

58.58
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

59.59
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

60.60
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

163

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Replaced bitwise AND with OR → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Replaced bitwise AND with OR → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 12 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 14 → KILLED

12.12
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 1 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 1 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 0 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 0 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -1 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -1 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -255 → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -255 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 254 → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 254 → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and with or → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and with or → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and by first member → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and by first member → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : none
Replace integer and by second member → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
Replace integer and by second member → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
Less or equal to less than → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Less or equal to greater than → SURVIVED

33.33
Location : hbMakeCodeLengths
Killed by : none
Less or equal to greater or equal → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
Less or equal to equal → SURVIVED

35.35
Location : hbMakeCodeLengths
Killed by : none
Less or equal to not equal → SURVIVED

36.36
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

37.37
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

38.38
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

39.39
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

40.40
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

41.41
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

42.42
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

43.43
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

44.44
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

45.45
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

46.46
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

47.47
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

48.48
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

49.49
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

50.50
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

51.51
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

165

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced bitwise AND with OR → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 12 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 1 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 0 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -255 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 254 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and with or → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and by first member → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Replace integer and by second member → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

166

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced bitwise AND with OR → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Replaced bitwise OR with AND → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 14 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with multiplication → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 1 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 0 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -1 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with -255 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 256 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Substituted 255 with 254 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and with or → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Replaced integer or with and → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Replaced integer and by first member → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Replaced integer or by first member → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Replace integer and by second member → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Replace integer or by second member → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

31.31
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

168

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 1 → TIMED_OUT

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 0 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 1 → TIMED_OUT

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with 0 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted -1 with -2 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

169

1.1
Location : hbMakeCodeLengths
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment 1 → SURVIVED

170

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

172

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

173

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

174

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

175

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
negated conditional → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → TIMED_OUT

18.18
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → TIMED_OUT

19.19
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → TIMED_OUT

21.21
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

23.23
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

26.26
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

27.27
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → SURVIVED

28.28
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

29.29
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

30.30
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

31.31
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

32.32
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

33.33
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

34.34
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

35.35
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

36.36
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

37.37
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → SURVIVED

38.38
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

39.39
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

40.40
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

41.41
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

176

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → SURVIVED

177

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced Shift Right with Shift Left → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

179

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 10 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 16 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 16 → SURVIVED

182

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 517 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 8 → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 1 → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 0 → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with -1 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with -516 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 517 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 516 with 515 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Less than to less or equal → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Less than to greater than → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Less than to greater or equal → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Less than to equal → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Less than to not equal → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

183

1.1
Location : hbMakeCodeLengths
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

186

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → TIMED_OUT

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → TIMED_OUT

187

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : hbMakeCodeLengths
Killed by : none
Removed increment 1 → TIMED_OUT

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 2 → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

15.15
Location : hbMakeCodeLengths
Killed by : none
greater than to less than → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
greater than to less or equal → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
greater than to greater or equal → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
greater than to equal → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
greater than to not equal → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 2 → KILLED

22.22
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

23.23
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

24.24
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

25.25
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 2 → KILLED

26.26
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

27.27
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

188

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 0 with -1 → SURVIVED

189

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

190

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
negated conditional → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

5.5
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 17 → KILLED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Less than to less or equal → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Less than to greater than → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Less than to greater or equal → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less than to equal → KILLED

11.11
Location : hbMakeCodeLengths
Killed by : none
Less than to not equal → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 10 → KILLED

13.13
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer array field → KILLED

14.14
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 10 → KILLED

15.15
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 10 → TIMED_OUT

17.17
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer array field → KILLED

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 10 → TIMED_OUT

19.19
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → TIMED_OUT

191

1.1
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 17 → KILLED

2.2
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 10 → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 10 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → TIMED_OUT

7.7
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 10 → KILLED

8.8
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer array field → KILLED

9.9
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 10 → KILLED

10.10
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

192

1.1
Location : hbMakeCodeLengths
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Removed increment 1 → SURVIVED

194

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced integer subtraction with addition → SURVIVED

3.3
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

4.4
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 16 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : hbMakeCodeLengths
Killed by : none
Replaced integer subtraction with addition → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

9.9
Location : hbMakeCodeLengths
Killed by : none
Replaced integer subtraction with division → SURVIVED

10.10
Location : hbMakeCodeLengths
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 2 → KILLED

15.15
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 8 → TIMED_OUT

19.19
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 9 → SURVIVED

20.20
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

21.21
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

22.22
Location : hbMakeCodeLengths
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

23.23
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 9 → SURVIVED

195

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbMakeCodeLengths
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

5.5
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 16 → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 3 → TIMED_OUT

7.7
Location : hbMakeCodeLengths
Killed by : none
Less or equal to less than → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
Less or equal to greater than → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
Less or equal to greater or equal → TIMED_OUT

10.10
Location : hbMakeCodeLengths
Killed by : none
Less or equal to equal → TIMED_OUT

11.11
Location : hbMakeCodeLengths
Killed by : none
Less or equal to not equal → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

13.13
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 9 → SURVIVED

15.15
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

17.17
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 9 → SURVIVED

19.19
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 3 → SURVIVED

196

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

4.4
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

200

1.1
Location : hbMakeCodeLengths
Killed by : none
negated conditional → TIMED_OUT

2.2
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced equality check with false → TIMED_OUT

3.3
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 15 → SURVIVED

5.5
Location : hbMakeCodeLengths
Killed by : none
not equal to less than → SURVIVED

6.6
Location : hbMakeCodeLengths
Killed by : none
not equal to less or equal → TIMED_OUT

7.7
Location : hbMakeCodeLengths
Killed by : none
not equal to greater than → SURVIVED

8.8
Location : hbMakeCodeLengths
Killed by : none
not equal to greater or equal → TIMED_OUT

9.9
Location : hbMakeCodeLengths
Killed by : none
not equal to equal → TIMED_OUT

10.10
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 11 → SURVIVED

11.11
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 11 → SURVIVED

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 11 → TIMED_OUT

13.13
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 11 → TIMED_OUT

204

1.1
Location : hbMakeCodeLengths
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : hbMakeCodeLengths
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : hbMakeCodeLengths
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : hbMakeCodeLengths
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

8.8
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

11.11
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

12.12
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

13.13
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

14.14
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less than → NO_COVERAGE

15.15
Location : hbMakeCodeLengths
Killed by : none
greater or equal to less or equal → NO_COVERAGE

16.16
Location : hbMakeCodeLengths
Killed by : none
greater or equal to greater than → NO_COVERAGE

17.17
Location : hbMakeCodeLengths
Killed by : none
greater or equal to equal → NO_COVERAGE

18.18
Location : hbMakeCodeLengths
Killed by : none
greater or equal to not equal → NO_COVERAGE

19.19
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

20.20
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

21.21
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

22.22
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

23.23
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

24.24
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

25.25
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

26.26
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

205

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

3.3
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

4.4
Location : hbMakeCodeLengths
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

13.13
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

15.15
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

17.17
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

206

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : hbMakeCodeLengths
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

3.3
Location : hbMakeCodeLengths
Killed by : none
Replaced integer division with multiplication → NO_COVERAGE

4.4
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

6.6
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

8.8
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

9.9
Location : hbMakeCodeLengths
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

10.10
Location : hbMakeCodeLengths
Killed by : none
Replaced integer division with multiplication → NO_COVERAGE

11.11
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

12.12
Location : hbMakeCodeLengths
Killed by : none
Replaced integer division with modulus → NO_COVERAGE

13.13
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

14.14
Location : hbMakeCodeLengths
Killed by : none
Replaced integer division with addition → NO_COVERAGE

15.15
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with division → NO_COVERAGE

16.16
Location : hbMakeCodeLengths
Killed by : none
Replaced integer division with subtraction → NO_COVERAGE

17.17
Location : hbMakeCodeLengths
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

18.18
Location : hbMakeCodeLengths
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

19.19
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : hbMakeCodeLengths
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

21.21
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

22.22
Location : hbMakeCodeLengths
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

23.23
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

24.24
Location : hbMakeCodeLengths
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

25.25
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

26.26
Location : hbMakeCodeLengths
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

27.27
Location : hbMakeCodeLengths
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

28.28
Location : hbMakeCodeLengths
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

29.29
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

30.30
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

31.31
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

32.32
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

207

1.1
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : hbMakeCodeLengths
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

3.3
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

4.4
Location : hbMakeCodeLengths
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

5.5
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

6.6
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

7.7
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

8.8
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

9.9
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

10.10
Location : hbMakeCodeLengths
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

11.11
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

12.12
Location : hbMakeCodeLengths
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

13.13
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

14.14
Location : hbMakeCodeLengths
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

15.15
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

16.16
Location : hbMakeCodeLengths
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

17.17
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

18.18
Location : hbMakeCodeLengths
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

234

1.1
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed call to org/apache/commons/compress/compressors/bzip2/CRC::<init> → KILLED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable mCrc → KILLED

236

1.1
Location : <init>
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable inUse → KILLED

3.3
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 1 → KILLED

4.4
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 0 → KILLED

5.5
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -1 → KILLED

6.6
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

7.7
Location : <init>
Killed by : none
Substituted 256 with 257 → SURVIVED

8.8
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 255 → KILLED

239

1.1
Location : <init>
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable seqToUnseq → KILLED

3.3
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 1 → KILLED

4.4
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 0 → KILLED

5.5
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -1 → KILLED

6.6
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

7.7
Location : <init>
Killed by : none
Substituted 256 with 257 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 256 with 255 → SURVIVED

240

1.1
Location : <init>
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable unseqToSeq → KILLED

3.3
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 1 → KILLED

4.4
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 0 → KILLED

5.5
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -1 → KILLED

6.6
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

7.7
Location : <init>
Killed by : none
Substituted 256 with 257 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 256 with 255 → SURVIVED

242

1.1
Location : <init>
Killed by : none
Substituted 18002 with 18003 → SURVIVED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable selector → KILLED

3.3
Location : <init>
Killed by : none
Substituted 18002 with 1 → SURVIVED

4.4
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 18002 with 0 → KILLED

5.5
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 18002 with -1 → KILLED

6.6
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 18002 with -18002 → KILLED

7.7
Location : <init>
Killed by : none
Substituted 18002 with 18003 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 18002 with 18001 → SURVIVED

243

1.1
Location : <init>
Killed by : none
Substituted 18002 with 18003 → SURVIVED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable selectorMtf → KILLED

3.3
Location : <init>
Killed by : none
Substituted 18002 with 1 → SURVIVED

4.4
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 18002 with 0 → KILLED

5.5
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 18002 with -1 → KILLED

6.6
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 18002 with -18002 → KILLED

7.7
Location : <init>
Killed by : none
Substituted 18002 with 18003 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 18002 with 18001 → SURVIVED

253

1.1
Location : <init>
Killed by : none
Substituted 258 with 259 → SURVIVED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable mtfFreq → KILLED

3.3
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 1 → KILLED

4.4
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 0 → KILLED

5.5
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -1 → KILLED

6.6
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -258 → KILLED

7.7
Location : <init>
Killed by : none
Substituted 258 with 259 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 258 with 257 → SURVIVED

266

1.1
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 0 → KILLED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable currentChar → KILLED

3.3
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 1 → KILLED

4.4
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 0 → KILLED

5.5
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 1 → KILLED

6.6
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 0 → KILLED

7.7
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with -2 → KILLED

267

1.1
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : <init>
Killed by : none
Removed assignment to member variable runLength → SURVIVED

3.3
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : <init>
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : <init>
Killed by : none
Substituted 0 with -1 → SURVIVED

270

1.1
Location : <init>
Killed by : none
Substituted 9 with 10 → SURVIVED

2.2
Location : <init>
Killed by : none
Substituted 9 with 1 → SURVIVED

3.3
Location : <init>
Killed by : none
Substituted 9 with 0 → SURVIVED

4.4
Location : <init>
Killed by : none
Substituted 9 with -1 → SURVIVED

5.5
Location : <init>
Killed by : none
Substituted 9 with -9 → SURVIVED

6.6
Location : <init>
Killed by : none
Substituted 9 with 10 → SURVIVED

7.7
Location : <init>
Killed by : none
Substituted 9 with 8 → SURVIVED

275

1.1
Location : <init>
Killed by : none
Removed assignment to member variable block → SURVIVED

276

1.1
Location : <init>
Killed by : none
Removed assignment to member variable quadrant → SURVIVED

277

1.1
Location : <init>
Killed by : none
Removed assignment to member variable zptr → SURVIVED

278

1.1
Location : <init>
Killed by : none
Removed assignment to member variable ftab → SURVIVED

280

1.1
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsSetStream → KILLED

282

1.1
Location : <init>
Killed by : none
Substituted 50 with 51 → SURVIVED

2.2
Location : <init>
Killed by : none
Removed assignment to member variable workFactor → SURVIVED

3.3
Location : <init>
Killed by : none
Substituted 50 with 1 → SURVIVED

4.4
Location : <init>
Killed by : none
Substituted 50 with 0 → SURVIVED

5.5
Location : <init>
Killed by : none
Substituted 50 with -1 → SURVIVED

6.6
Location : <init>
Killed by : none
Substituted 50 with -50 → SURVIVED

7.7
Location : <init>
Killed by : none
Substituted 50 with 51 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 50 with 49 → SURVIVED

283

1.1
Location : <init>
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : <init>
Killed by : none
Substituted 9 with 10 → SURVIVED

3.3
Location : <init>
Killed by : none
negated conditional → SURVIVED

4.4
Location : <init>
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : <init>
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : <init>
Killed by : none
Negated integer local variable number 2 → SURVIVED

7.7
Location : <init>
Killed by : none
Substituted 9 with 1 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 9 with 0 → SURVIVED

9.9
Location : <init>
Killed by : none
Substituted 9 with -1 → SURVIVED

10.10
Location : <init>
Killed by : none
Substituted 9 with -9 → SURVIVED

11.11
Location : <init>
Killed by : none
Substituted 9 with 10 → SURVIVED

12.12
Location : <init>
Killed by : none
Substituted 9 with 8 → SURVIVED

13.13
Location : <init>
Killed by : none
Less or equal to less than → SURVIVED

14.14
Location : <init>
Killed by : none
Less or equal to greater than → SURVIVED

15.15
Location : <init>
Killed by : none
Less or equal to greater or equal → SURVIVED

16.16
Location : <init>
Killed by : none
Less or equal to equal → SURVIVED

17.17
Location : <init>
Killed by : none
Less or equal to not equal → SURVIVED

18.18
Location : <init>
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

19.19
Location : <init>
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

20.20
Location : <init>
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

21.21
Location : <init>
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

284

1.1
Location : <init>
Killed by : none
Substituted 9 with 10 → NO_COVERAGE

2.2
Location : <init>
Killed by : none
Substituted 9 with 1 → NO_COVERAGE

3.3
Location : <init>
Killed by : none
Substituted 9 with 0 → NO_COVERAGE

4.4
Location : <init>
Killed by : none
Substituted 9 with -1 → NO_COVERAGE

5.5
Location : <init>
Killed by : none
Substituted 9 with -9 → NO_COVERAGE

6.6
Location : <init>
Killed by : none
Substituted 9 with 10 → NO_COVERAGE

7.7
Location : <init>
Killed by : none
Substituted 9 with 8 → NO_COVERAGE

286

1.1
Location : <init>
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : <init>
Killed by : none
negated conditional → SURVIVED

4.4
Location : <init>
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : <init>
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : <init>
Killed by : none
Negated integer local variable number 2 → SURVIVED

7.7
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : <init>
Killed by : none
Substituted 1 with -1 → SURVIVED

10.10
Location : <init>
Killed by : none
Substituted 1 with 2 → SURVIVED

11.11
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : <init>
Killed by : none
greater or equal to less than → SURVIVED

13.13
Location : <init>
Killed by : none
greater or equal to less or equal → SURVIVED

14.14
Location : <init>
Killed by : none
greater or equal to greater than → SURVIVED

15.15
Location : <init>
Killed by : none
greater or equal to equal → SURVIVED

16.16
Location : <init>
Killed by : none
greater or equal to not equal → SURVIVED

17.17
Location : <init>
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

18.18
Location : <init>
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

19.19
Location : <init>
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

20.20
Location : <init>
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

287

1.1
Location : <init>
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : <init>
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : <init>
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

4.4
Location : <init>
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : <init>
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

6.6
Location : <init>
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

289

1.1
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable blockSize100k → KILLED

2.2
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

3.3
Location : <init>
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : <init>
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

5.5
Location : <init>
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

6.6
Location : <init>
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

290

1.1
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::allocateCompressStructures → KILLED

291

1.1
Location : <init>
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::initialize → SURVIVED

292

1.1
Location : <init>
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::initBlock → SURVIVED

301

1.1
Location : write
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : write
Killed by : none
Substituted 256 with 257 → SURVIVED

3.3
Location : write
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer modulus with multiplication → KILLED

5.5
Location : write
Killed by : none
Negated integer local variable number 1 → SURVIVED

6.6
Location : write
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

8.8
Location : write
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

10.10
Location : write
Killed by : none
Replaced integer addition with subtraction → SURVIVED

11.11
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer modulus with multiplication → KILLED

12.12
Location : write
Killed by : none
Replaced integer addition with multiplication → SURVIVED

13.13
Location : write
Killed by : none
Replaced integer modulus with division → SURVIVED

14.14
Location : write
Killed by : none
Replaced integer addition with division → SURVIVED

15.15
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer modulus with addition → KILLED

16.16
Location : write
Killed by : none
Replaced integer addition with modulus → SURVIVED

17.17
Location : write
Killed by : none
Replaced integer modulus with subtraction → SURVIVED

18.18
Location : write
Killed by : none
Substituted 256 with 1 → SURVIVED

19.19
Location : write
Killed by : none
Substituted 256 with 1 → SURVIVED

20.20
Location : write
Killed by : none
Substituted 256 with 0 → SURVIVED

21.21
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 0 → KILLED

22.22
Location : write
Killed by : none
Substituted 256 with -1 → SURVIVED

23.23
Location : write
Killed by : none
Substituted 256 with -1 → SURVIVED

24.24
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

25.25
Location : write
Killed by : none
Substituted 256 with -256 → SURVIVED

26.26
Location : write
Killed by : none
Substituted 256 with 257 → SURVIVED

27.27
Location : write
Killed by : none
Substituted 256 with 257 → SURVIVED

28.28
Location : write
Killed by : none
Substituted 256 with 255 → SURVIVED

29.29
Location : write
Killed by : none
Substituted 256 with 255 → SURVIVED

30.30
Location : write
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

31.31
Location : write
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

32.32
Location : write
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

33.33
Location : write
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

302

1.1
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 0 → KILLED

2.2
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

3.3
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced equality check with false → KILLED

4.4
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced equality check with true → KILLED

5.5
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

6.6
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 1 → KILLED

7.7
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 0 → KILLED

8.8
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 1 → KILLED

9.9
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with 0 → KILLED

10.10
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted -1 with -2 → KILLED

11.11
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
equal to less than → KILLED

12.12
Location : write
Killed by : none
equal to less or equal → SURVIVED

13.13
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
equal to greater than → KILLED

14.14
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
equal to greater or equal → KILLED

15.15
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
equal to not equal → KILLED

16.16
Location : write
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

17.17
Location : write
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

18.18
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer field currentChar → KILLED

19.19
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer fieldcurrentChar → KILLED

303

1.1
Location : write
Killed by : none
negated conditional → SURVIVED

2.2
Location : write
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : write
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : write
Killed by : none
Negated integer field currentChar → SURVIVED

5.5
Location : write
Killed by : none
Negated integer local variable number 2 → SURVIVED

6.6
Location : write
Killed by : none
not equal to less than → SURVIVED

7.7
Location : write
Killed by : none
not equal to less or equal → SURVIVED

8.8
Location : write
Killed by : none
not equal to greater than → SURVIVED

9.9
Location : write
Killed by : none
not equal to greater or equal → SURVIVED

10.10
Location : write
Killed by : none
not equal to equal → SURVIVED

11.11
Location : write
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

12.12
Location : write
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

13.13
Location : write
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

14.14
Location : write
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

15.15
Location : write
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

16.16
Location : write
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

17.17
Location : write
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

18.18
Location : write
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

304

1.1
Location : write
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : write
Killed by : none
Removed assignment to member variable runLength → SURVIVED

4.4
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field runLength → KILLED

5.5
Location : write
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : write
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

8.8
Location : write
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : write
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

11.11
Location : write
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

14.14
Location : write
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : write
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : write
Killed by : none
Incremented (a++) integer field runLength → SURVIVED

17.17
Location : write
Killed by : none
Decremented (a--) integer field runLength → SURVIVED

18.18
Location : write
Killed by : none
Incremented (++a) integer field runLength → SURVIVED

19.19
Location : write
Killed by : none
Decremented (--a) integer fieldrunLength → SURVIVED

305

1.1
Location : write
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : write
Killed by : none
Substituted 254 with 255 → SURVIVED

3.3
Location : write
Killed by : none
negated conditional → SURVIVED

4.4
Location : write
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : write
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : write
Killed by : none
Negated integer field runLength → SURVIVED

7.7
Location : write
Killed by : none
Substituted 254 with 1 → SURVIVED

8.8
Location : write
Killed by : none
Substituted 254 with 0 → SURVIVED

9.9
Location : write
Killed by : none
Substituted 254 with -1 → SURVIVED

10.10
Location : write
Killed by : none
Substituted 254 with -254 → SURVIVED

11.11
Location : write
Killed by : none
Substituted 254 with 255 → SURVIVED

12.12
Location : write
Killed by : none
Substituted 254 with 253 → SURVIVED

13.13
Location : write
Killed by : none
Less or equal to less than → SURVIVED

14.14
Location : write
Killed by : none
Less or equal to greater than → SURVIVED

15.15
Location : write
Killed by : none
Less or equal to greater or equal → SURVIVED

16.16
Location : write
Killed by : none
Less or equal to equal → SURVIVED

17.17
Location : write
Killed by : none
Less or equal to not equal → SURVIVED

18.18
Location : write
Killed by : none
Incremented (a++) integer field runLength → SURVIVED

19.19
Location : write
Killed by : none
Decremented (a--) integer field runLength → SURVIVED

20.20
Location : write
Killed by : none
Incremented (++a) integer field runLength → SURVIVED

21.21
Location : write
Killed by : none
Decremented (--a) integer fieldrunLength → SURVIVED

306

1.1
Location : write
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → NO_COVERAGE

307

1.1
Location : write
Killed by : none
Substituted -1 with 0 → NO_COVERAGE

2.2
Location : write
Killed by : none
Removed assignment to member variable currentChar → NO_COVERAGE

3.3
Location : write
Killed by : none
Substituted -1 with 1 → NO_COVERAGE

4.4
Location : write
Killed by : none
Substituted -1 with 0 → NO_COVERAGE

5.5
Location : write
Killed by : none
Substituted -1 with 1 → NO_COVERAGE

6.6
Location : write
Killed by : none
Substituted -1 with 0 → NO_COVERAGE

7.7
Location : write
Killed by : none
Substituted -1 with -2 → NO_COVERAGE

308

1.1
Location : write
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : write
Killed by : none
Removed assignment to member variable runLength → NO_COVERAGE

3.3
Location : write
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : write
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

5.5
Location : write
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

6.6
Location : write
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

311

1.1
Location : write
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → SURVIVED

312

1.1
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

2.2
Location : write
Killed by : none
Removed assignment to member variable runLength → SURVIVED

3.3
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

4.4
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

5.5
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : write
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

313

1.1
Location : write
Killed by : none
Removed assignment to member variable currentChar → SURVIVED

2.2
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

3.3
Location : write
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : write
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

5.5
Location : write
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

6.6
Location : write
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

316

1.1
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable currentChar → KILLED

2.2
Location : write
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

3.3
Location : write
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : write
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

5.5
Location : write
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

6.6
Location : write
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

317

1.1
Location : write
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : write
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : write
Killed by : none
Removed assignment to member variable runLength → SURVIVED

4.4
Location : write
Killed by : none
Negated integer field runLength → SURVIVED

5.5
Location : write
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : write
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : write
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : write
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : write
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : write
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : write
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : write
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : write
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : write
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : write
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : write
Killed by : none
Incremented (a++) integer field runLength → SURVIVED

17.17
Location : write
Killed by : none
Decremented (a--) integer field runLength → SURVIVED

18.18
Location : write
Killed by : none
Incremented (++a) integer field runLength → SURVIVED

19.19
Location : write
Killed by : none
Decremented (--a) integer fieldrunLength → SURVIVED

322

1.1
Location : writeRun
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

4.4
Location : writeRun
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : writeRun
Killed by : none
Negated integer field last → SURVIVED

6.6
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field allowableBlockSize → KILLED

7.7
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less than → KILLED

8.8
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less or equal → KILLED

9.9
Location : writeRun
Killed by : none
greater or equal to greater than → SURVIVED

10.10
Location : writeRun
Killed by : none
greater or equal to equal → SURVIVED

11.11
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to not equal → KILLED

12.12
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

13.13
Location : writeRun
Killed by : none
Incremented (a++) integer field allowableBlockSize → SURVIVED

14.14
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

15.15
Location : writeRun
Killed by : none
Decremented (a--) integer field allowableBlockSize → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (++a) integer field allowableBlockSize → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldallowableBlockSize → SURVIVED

323

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

3.3
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

5.5
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

6.6
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

9.9
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

10.10
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

11.11
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

324

1.1
Location : writeRun
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : writeRun
Killed by : none
Changed increment from 1 to -1 → TIMED_OUT

3.3
Location : writeRun
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : writeRun
Killed by : none
negated conditional → SURVIVED

5.5
Location : writeRun
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : writeRun
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

7.7
Location : writeRun
Killed by : none
Negated integer local variable number 1 → TIMED_OUT

8.8
Location : writeRun
Killed by : none
Negated integer field runLength → SURVIVED

9.9
Location : writeRun
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : writeRun
Killed by : none
Substituted 0 with -1 → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 0 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : writeRun
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : writeRun
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : writeRun
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : writeRun
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

19.19
Location : writeRun
Killed by : none
Incremented (a++) integer field runLength → TIMED_OUT

20.20
Location : writeRun
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

21.21
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer field runLength → KILLED

22.22
Location : writeRun
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

23.23
Location : writeRun
Killed by : none
Incremented (++a) integer field runLength → TIMED_OUT

24.24
Location : writeRun
Killed by : none
Decremented (--a) integer local variable number 1 → TIMED_OUT

25.25
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer fieldrunLength → KILLED

325

1.1
Location : writeRun
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/CRC::updateCRC → SURVIVED

2.2
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

3.3
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

4.4
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

5.5
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

6.6
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

327

1.1
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
RemoveSwitch 0 mutation → KILLED

2.2
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
RemoveSwitch 1 mutation → KILLED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
RemoveSwitch 2 mutation → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed switch default to be first case → KILLED

5.5
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field runLength → KILLED

6.6
Location : writeRun
Killed by : none
Incremented (a++) integer field runLength → SURVIVED

7.7
Location : writeRun
Killed by : none
Decremented (a--) integer field runLength → SURVIVED

8.8
Location : writeRun
Killed by : none
Incremented (++a) integer field runLength → SURVIVED

9.9
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer fieldrunLength → KILLED

329

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

330

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

333

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

334

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

335

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

336

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

339

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

340

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

341

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

342

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

343

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

344

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

347

1.1
Location : writeRun
Killed by : none
Substituted 4 with 5 → SURVIVED

2.2
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : writeRun
Killed by : none
Replaced integer subtraction with addition → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field runLength → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer subtraction with addition → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer subtraction with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 4 with 1 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 4 with 0 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 4 with -1 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : writeRun
Killed by : none
Substituted 4 with -4 → SURVIVED

17.17
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

18.18
Location : writeRun
Killed by : none
Substituted 4 with 5 → SURVIVED

19.19
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

20.20
Location : writeRun
Killed by : none
Substituted 4 with 3 → SURVIVED

21.21
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

22.22
Location : writeRun
Killed by : none
Incremented (a++) integer field runLength → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (a--) integer field runLength → SURVIVED

24.24
Location : writeRun
Killed by : none
Incremented (++a) integer field runLength → SURVIVED

25.25
Location : writeRun
Killed by : none
Decremented (--a) integer fieldrunLength → SURVIVED

348

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

349

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

350

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

351

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

352

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

353

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

354

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

355

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field currentChar → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Incremented (a++) integer field currentChar → SURVIVED

18.18
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (a--) integer field currentChar → SURVIVED

20.20
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : writeRun
Killed by : none
Incremented (++a) integer field currentChar → SURVIVED

22.22
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

23.23
Location : writeRun
Killed by : none
Decremented (--a) integer fieldcurrentChar → SURVIVED

356

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : writeRun
Killed by : none
Removed assignment to member variable last → SURVIVED

4.4
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

357

1.1
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : writeRun
Killed by : none
Substituted 4 with 5 → SURVIVED

3.3
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : writeRun
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

6.6
Location : writeRun
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field runLength → KILLED

7.7
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : writeRun
Killed by : none
Replaced integer operation with first member → SURVIVED

9.9
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

10.10
Location : writeRun
Killed by : none
Replaced integer operation by second member → SURVIVED

11.11
Location : writeRun
Killed by : none
Replaced integer addition with subtraction → SURVIVED

12.12
Location : writeRun
Killed by : none
Replaced integer subtraction with addition → SURVIVED

13.13
Location : writeRun
Killed by : none
Replaced integer addition with multiplication → SURVIVED

14.14
Location : writeRun
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

15.15
Location : writeRun
Killed by : none
Replaced integer addition with division → SURVIVED

16.16
Location : writeRun
Killed by : none
Replaced integer subtraction with division → SURVIVED

17.17
Location : writeRun
Killed by : none
Replaced integer addition with modulus → SURVIVED

18.18
Location : writeRun
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

19.19
Location : writeRun
Killed by : none
Substituted 4 with 1 → SURVIVED

20.20
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

21.21
Location : writeRun
Killed by : none
Substituted 4 with 0 → SURVIVED

22.22
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

23.23
Location : writeRun
Killed by : none
Substituted 4 with -1 → SURVIVED

24.24
Location : writeRun
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : writeRun
Killed by : none
Substituted 4 with -4 → SURVIVED

26.26
Location : writeRun
Killed by : none
Substituted 1 with 2 → SURVIVED

27.27
Location : writeRun
Killed by : none
Substituted 4 with 5 → SURVIVED

28.28
Location : writeRun
Killed by : none
Substituted 1 with 0 → SURVIVED

29.29
Location : writeRun
Killed by : none
Substituted 4 with 3 → SURVIVED

30.30
Location : writeRun
Killed by : none
Incremented (a++) integer field last → SURVIVED

31.31
Location : writeRun
Killed by : none
Incremented (a++) integer field runLength → SURVIVED

32.32
Location : writeRun
Killed by : none
Decremented (a--) integer field last → SURVIVED

33.33
Location : writeRun
Killed by : none
Decremented (a--) integer field runLength → SURVIVED

34.34
Location : writeRun
Killed by : none
Incremented (++a) integer field last → SURVIVED

35.35
Location : writeRun
Killed by : none
Incremented (++a) integer field runLength → SURVIVED

36.36
Location : writeRun
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

37.37
Location : writeRun
Killed by : none
Decremented (--a) integer fieldrunLength → SURVIVED

361

1.1
Location : writeRun
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::endBlock → NO_COVERAGE

362

1.1
Location : writeRun
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::initBlock → NO_COVERAGE

363

1.1
Location : writeRun
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → NO_COVERAGE

367

1.1
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : <init>
Killed by : none
Removed assignment to member variable closed → SURVIVED

3.3
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : <init>
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : <init>
Killed by : none
Substituted 0 with -1 → SURVIVED

370

1.1
Location : finalize
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::close → NO_COVERAGE

371

1.1
Location : finalize
Killed by : none
removed call to java/lang/Object::finalize → NO_COVERAGE

375

1.1
Location : close
Killed by : none
negated conditional → SURVIVED

2.2
Location : close
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : close
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : close
Killed by : none
equal to less than → SURVIVED

5.5
Location : close
Killed by : none
equal to less or equal → SURVIVED

6.6
Location : close
Killed by : none
equal to greater than → SURVIVED

7.7
Location : close
Killed by : none
equal to greater or equal → SURVIVED

8.8
Location : close
Killed by : none
equal to not equal → SURVIVED

378

1.1
Location : close
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::finish → SURVIVED

379

1.1
Location : close
Killed by : none
removed call to org/apache/commons/compress/compressors/CompressorOutputStream::close → SURVIVED

380

1.1
Location : close
Killed by : none
removed call to java/io/OutputStream::close → SURVIVED

381

1.1
Location : close
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : close
Killed by : none
Removed assignment to member variable closed → SURVIVED

3.3
Location : close
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : close
Killed by : none
Substituted 1 with -1 → SURVIVED

5.5
Location : close
Killed by : none
Substituted 1 with -1 → SURVIVED

6.6
Location : close
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : close
Killed by : none
Substituted 1 with 0 → SURVIVED

385

1.1
Location : finish
Killed by : none
negated conditional → SURVIVED

2.2
Location : finish
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : finish
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : finish
Killed by : none
equal to less than → SURVIVED

5.5
Location : finish
Killed by : none
equal to less or equal → SURVIVED

6.6
Location : finish
Killed by : none
equal to greater than → SURVIVED

7.7
Location : finish
Killed by : none
equal to greater or equal → SURVIVED

8.8
Location : finish
Killed by : none
equal to not equal → SURVIVED

389

1.1
Location : finish
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : finish
Killed by : none
negated conditional → SURVIVED

3.3
Location : finish
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : finish
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : finish
Killed by : none
Negated integer field runLength → SURVIVED

6.6
Location : finish
Killed by : none
Less or equal to less than → SURVIVED

7.7
Location : finish
Killed by : none
Less or equal to greater than → SURVIVED

8.8
Location : finish
Killed by : none
Less or equal to greater or equal → SURVIVED

9.9
Location : finish
Killed by : none
Less or equal to equal → SURVIVED

10.10
Location : finish
Killed by : none
Less or equal to not equal → SURVIVED

11.11
Location : finish
Killed by : none
Incremented (a++) integer field runLength → SURVIVED

12.12
Location : finish
Killed by : none
Decremented (a--) integer field runLength → SURVIVED

13.13
Location : finish
Killed by : none
Incremented (++a) integer field runLength → SURVIVED

14.14
Location : finish
Killed by : none
Decremented (--a) integer fieldrunLength → SURVIVED

390

1.1
Location : finish
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::writeRun → SURVIVED

392

1.1
Location : finish
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : finish
Killed by : none
Removed assignment to member variable currentChar → SURVIVED

3.3
Location : finish
Killed by : none
Substituted -1 with 1 → SURVIVED

4.4
Location : finish
Killed by : none
Substituted -1 with 0 → SURVIVED

5.5
Location : finish
Killed by : none
Substituted -1 with 1 → SURVIVED

6.6
Location : finish
Killed by : none
Substituted -1 with 0 → SURVIVED

7.7
Location : finish
Killed by : none
Substituted -1 with -2 → SURVIVED

393

1.1
Location : finish
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::endBlock → SURVIVED

394

1.1
Location : finish
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::endCompression → SURVIVED

398

1.1
Location : flush
Killed by : none
removed call to org/apache/commons/compress/compressors/CompressorOutputStream::flush → NO_COVERAGE

399

1.1
Location : flush
Killed by : none
removed call to java/io/OutputStream::flush → NO_COVERAGE

405

1.1
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : initialize
Killed by : none
Removed assignment to member variable bytesOut → SURVIVED

3.3
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : initialize
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : initialize
Killed by : none
Substituted 0 with -1 → SURVIVED

406

1.1
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : initialize
Killed by : none
Removed assignment to member variable nBlocksRandomised → SURVIVED

3.3
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : initialize
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : initialize
Killed by : none
Substituted 0 with -1 → SURVIVED

408

1.1
Location : initialize
Killed by : none
Substituted 66 with 67 → SURVIVED

2.2
Location : initialize
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : initialize
Killed by : none
Substituted 66 with 1 → SURVIVED

4.4
Location : initialize
Killed by : none
Substituted 66 with 0 → SURVIVED

5.5
Location : initialize
Killed by : none
Substituted 66 with -1 → SURVIVED

6.6
Location : initialize
Killed by : none
Substituted 66 with -66 → SURVIVED

7.7
Location : initialize
Killed by : none
Substituted 66 with 67 → SURVIVED

8.8
Location : initialize
Killed by : none
Substituted 66 with 65 → SURVIVED

409

1.1
Location : initialize
Killed by : none
Substituted 90 with 91 → SURVIVED

2.2
Location : initialize
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : initialize
Killed by : none
Substituted 90 with 1 → SURVIVED

4.4
Location : initialize
Killed by : none
Substituted 90 with 0 → SURVIVED

5.5
Location : initialize
Killed by : none
Substituted 90 with -1 → SURVIVED

6.6
Location : initialize
Killed by : none
Substituted 90 with -90 → SURVIVED

7.7
Location : initialize
Killed by : none
Substituted 90 with 91 → SURVIVED

8.8
Location : initialize
Killed by : none
Substituted 90 with 89 → SURVIVED

413

1.1
Location : initialize
Killed by : none
Substituted 104 with 105 → SURVIVED

2.2
Location : initialize
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : initialize
Killed by : none
Substituted 104 with 1 → SURVIVED

4.4
Location : initialize
Killed by : none
Substituted 104 with 0 → SURVIVED

5.5
Location : initialize
Killed by : none
Substituted 104 with -1 → SURVIVED

6.6
Location : initialize
Killed by : none
Substituted 104 with -104 → SURVIVED

7.7
Location : initialize
Killed by : none
Substituted 104 with 105 → SURVIVED

8.8
Location : initialize
Killed by : none
Substituted 104 with 103 → SURVIVED

414

1.1
Location : initialize
Killed by : none
Substituted 48 with 49 → SURVIVED

2.2
Location : initialize
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : initialize
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

4.4
Location : initialize
Killed by : none
Negated integer field blockSize100k → SURVIVED

5.5
Location : initialize
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : initialize
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : initialize
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : initialize
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : initialize
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : initialize
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : initialize
Killed by : none
Substituted 48 with 1 → SURVIVED

12.12
Location : initialize
Killed by : none
Substituted 48 with 0 → SURVIVED

13.13
Location : initialize
Killed by : none
Substituted 48 with -1 → SURVIVED

14.14
Location : initialize
Killed by : none
Substituted 48 with -48 → SURVIVED

15.15
Location : initialize
Killed by : none
Substituted 48 with 49 → SURVIVED

16.16
Location : initialize
Killed by : none
Substituted 48 with 47 → SURVIVED

17.17
Location : initialize
Killed by : none
Incremented (a++) integer field blockSize100k → SURVIVED

18.18
Location : initialize
Killed by : none
Decremented (a--) integer field blockSize100k → SURVIVED

19.19
Location : initialize
Killed by : none
Incremented (++a) integer field blockSize100k → SURVIVED

20.20
Location : initialize
Killed by : none
Decremented (--a) integer fieldblockSize100k → SURVIVED

416

1.1
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : initialize
Killed by : none
Removed assignment to member variable combinedCRC → SURVIVED

3.3
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : initialize
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : initialize
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : initialize
Killed by : none
Substituted 0 with -1 → SURVIVED

423

1.1
Location : initBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/CRC::initialiseCRC → SURVIVED

424

1.1
Location : initBlock
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : initBlock
Killed by : none
Removed assignment to member variable last → SURVIVED

3.3
Location : initBlock
Killed by : none
Substituted -1 with 1 → SURVIVED

4.4
Location : initBlock
Killed by : none
Substituted -1 with 0 → SURVIVED

5.5
Location : initBlock
Killed by : none
Substituted -1 with 1 → SURVIVED

6.6
Location : initBlock
Killed by : none
Substituted -1 with 0 → SURVIVED

7.7
Location : initBlock
Killed by : none
Substituted -1 with -2 → SURVIVED

427

1.1
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : initBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 257 → KILLED

5.5
Location : initBlock
Killed by : none
negated conditional → SURVIVED

6.6
Location : initBlock
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

8.8
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

9.9
Location : initBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : initBlock
Killed by : none
Substituted 256 with 1 → SURVIVED

11.11
Location : initBlock
Killed by : none
Substituted 256 with 0 → SURVIVED

12.12
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : initBlock
Killed by : none
Substituted 256 with -1 → SURVIVED

14.14
Location : initBlock
Killed by : none
Substituted 256 with -256 → SURVIVED

15.15
Location : initBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

16.16
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 257 → KILLED

17.17
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

18.18
Location : initBlock
Killed by : none
Substituted 256 with 255 → SURVIVED

19.19
Location : initBlock
Killed by : none
greater or equal to less than → SURVIVED

20.20
Location : initBlock
Killed by : none
greater or equal to less or equal → SURVIVED

21.21
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

22.22
Location : initBlock
Killed by : none
greater or equal to equal → SURVIVED

23.23
Location : initBlock
Killed by : none
greater or equal to not equal → SURVIVED

24.24
Location : initBlock
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

25.25
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

26.26
Location : initBlock
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

27.27
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

428

1.1
Location : initBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

3.3
Location : initBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : initBlock
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : initBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : initBlock
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : initBlock
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

8.8
Location : initBlock
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

9.9
Location : initBlock
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

10.10
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

432

1.1
Location : initBlock
Killed by : none
Substituted 100000 with 100001 → SURVIVED

2.2
Location : initBlock
Killed by : none
Substituted 20 with 21 → SURVIVED

3.3
Location : initBlock
Killed by : none
Replaced integer multiplication with division → SURVIVED

4.4
Location : initBlock
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : initBlock
Killed by : none
Removed assignment to member variable allowableBlockSize → SURVIVED

6.6
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field blockSize100k → KILLED

7.7
Location : initBlock
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : initBlock
Killed by : none
Replaced integer operation with first member → SURVIVED

9.9
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

10.10
Location : initBlock
Killed by : none
Replaced integer operation by second member → SURVIVED

11.11
Location : initBlock
Killed by : none
Replaced integer multiplication with division → SURVIVED

12.12
Location : initBlock
Killed by : none
Replaced integer subtraction with addition → SURVIVED

13.13
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with modulus → KILLED

14.14
Location : initBlock
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

15.15
Location : initBlock
Killed by : none
Replaced integer multiplication with addition → SURVIVED

16.16
Location : initBlock
Killed by : none
Replaced integer subtraction with division → SURVIVED

17.17
Location : initBlock
Killed by : none
Replaced integer multiplication with subtraction → SURVIVED

18.18
Location : initBlock
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

19.19
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with 1 → KILLED

20.20
Location : initBlock
Killed by : none
Substituted 20 with 1 → SURVIVED

21.21
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with 0 → KILLED

22.22
Location : initBlock
Killed by : none
Substituted 20 with 0 → SURVIVED

23.23
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with -1 → KILLED

24.24
Location : initBlock
Killed by : none
Substituted 20 with -1 → SURVIVED

25.25
Location : initBlock
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with -100000 → KILLED

26.26
Location : initBlock
Killed by : none
Substituted 20 with -20 → SURVIVED

27.27
Location : initBlock
Killed by : none
Substituted 100000 with 100001 → SURVIVED

28.28
Location : initBlock
Killed by : none
Substituted 20 with 21 → SURVIVED

29.29
Location : initBlock
Killed by : none
Substituted 100000 with 99999 → SURVIVED

30.30
Location : initBlock
Killed by : none
Substituted 20 with 19 → SURVIVED

31.31
Location : initBlock
Killed by : none
Incremented (a++) integer field blockSize100k → SURVIVED

32.32
Location : initBlock
Killed by : none
Decremented (a--) integer field blockSize100k → SURVIVED

33.33
Location : initBlock
Killed by : none
Incremented (++a) integer field blockSize100k → SURVIVED

34.34
Location : initBlock
Killed by : none
Decremented (--a) integer fieldblockSize100k → SURVIVED

436

1.1
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/CRC::getFinalCRC → SURVIVED

2.2
Location : endBlock
Killed by : none
Removed assignment to member variable blockCRC → SURVIVED

437

1.1
Location : endBlock
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : endBlock
Killed by : none
Substituted 31 with 32 → SURVIVED

3.3
Location : endBlock
Killed by : none
Replaced Shift Left with Shift Right → SURVIVED

4.4
Location : endBlock
Killed by : none
Replaced Unsigned Shift Right with Shift Left → SURVIVED

5.5
Location : endBlock
Killed by : none
Replaced bitwise OR with AND → SURVIVED

6.6
Location : endBlock
Killed by : none
Removed assignment to member variable combinedCRC → SURVIVED

7.7
Location : endBlock
Killed by : none
Negated integer field combinedCRC → SURVIVED

8.8
Location : endBlock
Killed by : none
Negated integer field combinedCRC → SURVIVED

9.9
Location : endBlock
Killed by : none
Substituted 31 with 1 → SURVIVED

10.10
Location : endBlock
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : endBlock
Killed by : none
Substituted 31 with 0 → SURVIVED

12.12
Location : endBlock
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : endBlock
Killed by : none
Substituted 31 with -1 → SURVIVED

14.14
Location : endBlock
Killed by : none
Substituted 1 with -1 → SURVIVED

15.15
Location : endBlock
Killed by : none
Substituted 31 with -31 → SURVIVED

16.16
Location : endBlock
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : endBlock
Killed by : none
Substituted 31 with 32 → SURVIVED

18.18
Location : endBlock
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : endBlock
Killed by : none
Substituted 31 with 30 → SURVIVED

20.20
Location : endBlock
Killed by : none
Replaced integer or with and → SURVIVED

21.21
Location : endBlock
Killed by : none
Replaced integer or by first member → SURVIVED

22.22
Location : endBlock
Killed by : none
Replace integer or by second member → SURVIVED

23.23
Location : endBlock
Killed by : none
Incremented (a++) integer field combinedCRC → SURVIVED

24.24
Location : endBlock
Killed by : none
Incremented (a++) integer field combinedCRC → SURVIVED

25.25
Location : endBlock
Killed by : none
Decremented (a--) integer field combinedCRC → SURVIVED

26.26
Location : endBlock
Killed by : none
Decremented (a--) integer field combinedCRC → SURVIVED

27.27
Location : endBlock
Killed by : none
Incremented (++a) integer field combinedCRC → SURVIVED

28.28
Location : endBlock
Killed by : none
Incremented (++a) integer field combinedCRC → SURVIVED

29.29
Location : endBlock
Killed by : none
Decremented (--a) integer fieldcombinedCRC → SURVIVED

30.30
Location : endBlock
Killed by : none
Decremented (--a) integer fieldcombinedCRC → SURVIVED

438

1.1
Location : endBlock
Killed by : none
Replaced XOR with AND → SURVIVED

2.2
Location : endBlock
Killed by : none
Removed assignment to member variable combinedCRC → SURVIVED

3.3
Location : endBlock
Killed by : none
Negated integer field combinedCRC → SURVIVED

4.4
Location : endBlock
Killed by : none
Negated integer field blockCRC → SURVIVED

5.5
Location : endBlock
Killed by : none
Incremented (a++) integer field combinedCRC → SURVIVED

6.6
Location : endBlock
Killed by : none
Incremented (a++) integer field blockCRC → SURVIVED

7.7
Location : endBlock
Killed by : none
Decremented (a--) integer field combinedCRC → SURVIVED

8.8
Location : endBlock
Killed by : none
Decremented (a--) integer field blockCRC → SURVIVED

9.9
Location : endBlock
Killed by : none
Incremented (++a) integer field combinedCRC → SURVIVED

10.10
Location : endBlock
Killed by : none
Incremented (++a) integer field blockCRC → SURVIVED

11.11
Location : endBlock
Killed by : none
Decremented (--a) integer fieldcombinedCRC → SURVIVED

12.12
Location : endBlock
Killed by : none
Decremented (--a) integer fieldblockCRC → SURVIVED

442

1.1
Location : endBlock
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : endBlock
Killed by : none
negated conditional → SURVIVED

3.3
Location : endBlock
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

4.4
Location : endBlock
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

5.5
Location : endBlock
Killed by : none
Negated integer field last → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted -1 with 1 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted -1 with 0 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted -1 with 1 → SURVIVED

9.9
Location : endBlock
Killed by : none
Substituted -1 with 0 → SURVIVED

10.10
Location : endBlock
Killed by : none
Substituted -1 with -2 → SURVIVED

11.11
Location : endBlock
Killed by : none
not equal to less than → SURVIVED

12.12
Location : endBlock
Killed by : none
not equal to less or equal → SURVIVED

13.13
Location : endBlock
Killed by : none
not equal to greater than → SURVIVED

14.14
Location : endBlock
Killed by : none
not equal to greater or equal → SURVIVED

15.15
Location : endBlock
Killed by : none
not equal to equal → SURVIVED

16.16
Location : endBlock
Killed by : none
Incremented (a++) integer field last → SURVIVED

17.17
Location : endBlock
Killed by : none
Decremented (a--) integer field last → SURVIVED

18.18
Location : endBlock
Killed by : none
Incremented (++a) integer field last → SURVIVED

19.19
Location : endBlock
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

447

1.1
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::doReversibleTransformation → SURVIVED

462

1.1
Location : endBlock
Killed by : none
Substituted 49 with 50 → SURVIVED

2.2
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endBlock
Killed by : none
Substituted 49 with 1 → SURVIVED

4.4
Location : endBlock
Killed by : none
Substituted 49 with 0 → SURVIVED

5.5
Location : endBlock
Killed by : none
Substituted 49 with -1 → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted 49 with -49 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted 49 with 50 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted 49 with 48 → SURVIVED

463

1.1
Location : endBlock
Killed by : none
Substituted 65 with 66 → SURVIVED

2.2
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endBlock
Killed by : none
Substituted 65 with 1 → SURVIVED

4.4
Location : endBlock
Killed by : none
Substituted 65 with 0 → SURVIVED

5.5
Location : endBlock
Killed by : none
Substituted 65 with -1 → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted 65 with -65 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted 65 with 66 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted 65 with 64 → SURVIVED

464

1.1
Location : endBlock
Killed by : none
Substituted 89 with 90 → SURVIVED

2.2
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endBlock
Killed by : none
Substituted 89 with 1 → SURVIVED

4.4
Location : endBlock
Killed by : none
Substituted 89 with 0 → SURVIVED

5.5
Location : endBlock
Killed by : none
Substituted 89 with -1 → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted 89 with -89 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted 89 with 90 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted 89 with 88 → SURVIVED

465

1.1
Location : endBlock
Killed by : none
Substituted 38 with 39 → SURVIVED

2.2
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endBlock
Killed by : none
Substituted 38 with 1 → SURVIVED

4.4
Location : endBlock
Killed by : none
Substituted 38 with 0 → SURVIVED

5.5
Location : endBlock
Killed by : none
Substituted 38 with -1 → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted 38 with -38 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted 38 with 39 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted 38 with 37 → SURVIVED

466

1.1
Location : endBlock
Killed by : none
Substituted 83 with 84 → SURVIVED

2.2
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endBlock
Killed by : none
Substituted 83 with 1 → SURVIVED

4.4
Location : endBlock
Killed by : none
Substituted 83 with 0 → SURVIVED

5.5
Location : endBlock
Killed by : none
Substituted 83 with -1 → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted 83 with -83 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted 83 with 84 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted 83 with 82 → SURVIVED

467

1.1
Location : endBlock
Killed by : none
Substituted 89 with 90 → SURVIVED

2.2
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endBlock
Killed by : none
Substituted 89 with 1 → SURVIVED

4.4
Location : endBlock
Killed by : none
Substituted 89 with 0 → SURVIVED

5.5
Location : endBlock
Killed by : none
Substituted 89 with -1 → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted 89 with -89 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted 89 with 90 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted 89 with 88 → SURVIVED

470

1.1
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutint → SURVIVED

2.2
Location : endBlock
Killed by : none
Negated integer field blockCRC → SURVIVED

3.3
Location : endBlock
Killed by : none
Incremented (a++) integer field blockCRC → SURVIVED

4.4
Location : endBlock
Killed by : none
Decremented (a--) integer field blockCRC → SURVIVED

5.5
Location : endBlock
Killed by : none
Incremented (++a) integer field blockCRC → SURVIVED

6.6
Location : endBlock
Killed by : none
Decremented (--a) integer fieldblockCRC → SURVIVED

473

1.1
Location : endBlock
Killed by : none
negated conditional → SURVIVED

2.2
Location : endBlock
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : endBlock
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : endBlock
Killed by : none
equal to less than → SURVIVED

5.5
Location : endBlock
Killed by : none
equal to less or equal → SURVIVED

6.6
Location : endBlock
Killed by : none
equal to greater than → SURVIVED

7.7
Location : endBlock
Killed by : none
equal to greater or equal → SURVIVED

8.8
Location : endBlock
Killed by : none
equal to not equal → SURVIVED

474

1.1
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → NO_COVERAGE

4.4
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

5.5
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

6.6
Location : endBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

7.7
Location : endBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

8.8
Location : endBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

9.9
Location : endBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

10.10
Location : endBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

11.11
Location : endBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

12.12
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

475

1.1
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : endBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : endBlock
Killed by : none
Removed assignment to member variable nBlocksRandomised → NO_COVERAGE

4.4
Location : endBlock
Killed by : none
Negated integer field nBlocksRandomised → NO_COVERAGE

5.5
Location : endBlock
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : endBlock
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : endBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : endBlock
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : endBlock
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : endBlock
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

12.12
Location : endBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

13.13
Location : endBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : endBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

15.15
Location : endBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

16.16
Location : endBlock
Killed by : none
Incremented (a++) integer field nBlocksRandomised → NO_COVERAGE

17.17
Location : endBlock
Killed by : none
Decremented (a--) integer field nBlocksRandomised → NO_COVERAGE

18.18
Location : endBlock
Killed by : none
Incremented (++a) integer field nBlocksRandomised → NO_COVERAGE

19.19
Location : endBlock
Killed by : none
Decremented (--a) integer fieldnBlocksRandomised → NO_COVERAGE

477

1.1
Location : endBlock
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : endBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : endBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : endBlock
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : endBlock
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : endBlock
Killed by : none
Substituted 0 with -1 → SURVIVED

8.8
Location : endBlock
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : endBlock
Killed by : none
Substituted 1 with 2 → SURVIVED

10.10
Location : endBlock
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : endBlock
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : endBlock
Killed by : none
Substituted 0 with -1 → SURVIVED

481

1.1
Location : endBlock
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::moveToFrontCodeAndSend → SURVIVED

492

1.1
Location : endCompression
Killed by : none
Substituted 23 with 24 → SURVIVED

2.2
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endCompression
Killed by : none
Substituted 23 with 1 → SURVIVED

4.4
Location : endCompression
Killed by : none
Substituted 23 with 0 → SURVIVED

5.5
Location : endCompression
Killed by : none
Substituted 23 with -1 → SURVIVED

6.6
Location : endCompression
Killed by : none
Substituted 23 with -23 → SURVIVED

7.7
Location : endCompression
Killed by : none
Substituted 23 with 24 → SURVIVED

8.8
Location : endCompression
Killed by : none
Substituted 23 with 22 → SURVIVED

493

1.1
Location : endCompression
Killed by : none
Substituted 114 with 115 → SURVIVED

2.2
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endCompression
Killed by : none
Substituted 114 with 1 → SURVIVED

4.4
Location : endCompression
Killed by : none
Substituted 114 with 0 → SURVIVED

5.5
Location : endCompression
Killed by : none
Substituted 114 with -1 → SURVIVED

6.6
Location : endCompression
Killed by : none
Substituted 114 with -114 → SURVIVED

7.7
Location : endCompression
Killed by : none
Substituted 114 with 115 → SURVIVED

8.8
Location : endCompression
Killed by : none
Substituted 114 with 113 → SURVIVED

494

1.1
Location : endCompression
Killed by : none
Substituted 69 with 70 → SURVIVED

2.2
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endCompression
Killed by : none
Substituted 69 with 1 → SURVIVED

4.4
Location : endCompression
Killed by : none
Substituted 69 with 0 → SURVIVED

5.5
Location : endCompression
Killed by : none
Substituted 69 with -1 → SURVIVED

6.6
Location : endCompression
Killed by : none
Substituted 69 with -69 → SURVIVED

7.7
Location : endCompression
Killed by : none
Substituted 69 with 70 → SURVIVED

8.8
Location : endCompression
Killed by : none
Substituted 69 with 68 → SURVIVED

495

1.1
Location : endCompression
Killed by : none
Substituted 56 with 57 → SURVIVED

2.2
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endCompression
Killed by : none
Substituted 56 with 1 → SURVIVED

4.4
Location : endCompression
Killed by : none
Substituted 56 with 0 → SURVIVED

5.5
Location : endCompression
Killed by : none
Substituted 56 with -1 → SURVIVED

6.6
Location : endCompression
Killed by : none
Substituted 56 with -56 → SURVIVED

7.7
Location : endCompression
Killed by : none
Substituted 56 with 57 → SURVIVED

8.8
Location : endCompression
Killed by : none
Substituted 56 with 55 → SURVIVED

496

1.1
Location : endCompression
Killed by : none
Substituted 80 with 81 → SURVIVED

2.2
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endCompression
Killed by : none
Substituted 80 with 1 → SURVIVED

4.4
Location : endCompression
Killed by : none
Substituted 80 with 0 → SURVIVED

5.5
Location : endCompression
Killed by : none
Substituted 80 with -1 → SURVIVED

6.6
Location : endCompression
Killed by : none
Substituted 80 with -80 → SURVIVED

7.7
Location : endCompression
Killed by : none
Substituted 80 with 81 → SURVIVED

8.8
Location : endCompression
Killed by : none
Substituted 80 with 79 → SURVIVED

497

1.1
Location : endCompression
Killed by : none
Substituted 144 with 145 → SURVIVED

2.2
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutUChar → SURVIVED

3.3
Location : endCompression
Killed by : none
Substituted 144 with 1 → SURVIVED

4.4
Location : endCompression
Killed by : none
Substituted 144 with 0 → SURVIVED

5.5
Location : endCompression
Killed by : none
Substituted 144 with -1 → SURVIVED

6.6
Location : endCompression
Killed by : none
Substituted 144 with -144 → SURVIVED

7.7
Location : endCompression
Killed by : none
Substituted 144 with 145 → SURVIVED

8.8
Location : endCompression
Killed by : none
Substituted 144 with 143 → SURVIVED

499

1.1
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutint → SURVIVED

2.2
Location : endCompression
Killed by : none
Negated integer field combinedCRC → SURVIVED

3.3
Location : endCompression
Killed by : none
Incremented (a++) integer field combinedCRC → SURVIVED

4.4
Location : endCompression
Killed by : none
Decremented (a--) integer field combinedCRC → SURVIVED

5.5
Location : endCompression
Killed by : none
Incremented (++a) integer field combinedCRC → SURVIVED

6.6
Location : endCompression
Killed by : none
Decremented (--a) integer fieldcombinedCRC → SURVIVED

501

1.1
Location : endCompression
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsFinishedWithStream → SURVIVED

508

1.1
Location : hbAssignCodes
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : hbAssignCodes
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : hbAssignCodes
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : hbAssignCodes
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : hbAssignCodes
Killed by : none
Substituted 0 with -1 → SURVIVED

509

1.1
Location : hbAssignCodes
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbAssignCodes
Killed by : none
Changed increment from 1 to -1 → TIMED_OUT

3.3
Location : hbAssignCodes
Killed by : none
negated conditional → SURVIVED

4.4
Location : hbAssignCodes
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : hbAssignCodes
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

6.6
Location : hbAssignCodes
Killed by : none
Removed increment 1 → TIMED_OUT

7.7
Location : hbAssignCodes
Killed by : none
Negated integer local variable number 3 → SURVIVED

8.8
Location : hbAssignCodes
Killed by : none
Negated integer local variable number 7 → TIMED_OUT

9.9
Location : hbAssignCodes
Killed by : none
Negated integer local variable number 4 → SURVIVED

10.10
Location : hbAssignCodes
Killed by : none
greater than to less than → SURVIVED

11.11
Location : hbAssignCodes
Killed by : none
greater than to less or equal → SURVIVED

12.12
Location : hbAssignCodes
Killed by : none
greater than to greater or equal → SURVIVED

13.13
Location : hbAssignCodes
Killed by : none
greater than to equal → SURVIVED

14.14
Location : hbAssignCodes
Killed by : none
greater than to not equal → SURVIVED

15.15
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

16.16
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

17.17
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 4 → TIMED_OUT

18.18
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

19.19
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 6 → TIMED_OUT

20.20
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

21.21
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

22.22
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

23.23
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 4 → TIMED_OUT

24.24
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 3 → SURVIVED

25.25
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 6 → TIMED_OUT

26.26
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

510

1.1
Location : hbAssignCodes
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : hbAssignCodes
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : hbAssignCodes
Killed by : none
negated conditional → SURVIVED

5.5
Location : hbAssignCodes
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

8.8
Location : hbAssignCodes
Killed by : none
Negated integer local variable number 5 → SURVIVED

9.9
Location : hbAssignCodes
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : hbAssignCodes
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : hbAssignCodes
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : hbAssignCodes
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : hbAssignCodes
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : hbAssignCodes
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : hbAssignCodes
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

19.19
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

20.20
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

21.21
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

22.22
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

23.23
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

24.24
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

25.25
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

511

1.1
Location : hbAssignCodes
Killed by : none
negated conditional → SURVIVED

2.2
Location : hbAssignCodes
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : hbAssignCodes
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

5.5
Location : hbAssignCodes
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : hbAssignCodes
Killed by : none
not equal to less than → SURVIVED

7.7
Location : hbAssignCodes
Killed by : none
not equal to less or equal → SURVIVED

8.8
Location : hbAssignCodes
Killed by : none
not equal to greater than → SURVIVED

9.9
Location : hbAssignCodes
Killed by : none
not equal to greater or equal → SURVIVED

10.10
Location : hbAssignCodes
Killed by : none
not equal to equal → SURVIVED

11.11
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

12.12
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

13.13
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 8 → TIMED_OUT

14.14
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

15.15
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

16.16
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

17.17
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

18.18
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

512

1.1
Location : hbAssignCodes
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

2.2
Location : hbAssignCodes
Killed by : none
Negated integer local variable number 6 → SURVIVED

3.3
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

4.4
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

5.5
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 8 → TIMED_OUT

6.6
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

7.7
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

8.8
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

9.9
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 8 → TIMED_OUT

10.10
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

513

1.1
Location : hbAssignCodes
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : hbAssignCodes
Killed by : none
Removed increment 1 → SURVIVED

516

1.1
Location : hbAssignCodes
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : hbAssignCodes
Killed by : none
Replaced Shift Left with Shift Right → SURVIVED

3.3
Location : hbAssignCodes
Killed by : none
Negated integer local variable number 6 → SURVIVED

4.4
Location : hbAssignCodes
Killed by : none
Substituted 1 with 0 → SURVIVED

5.5
Location : hbAssignCodes
Killed by : none
Substituted 1 with -1 → SURVIVED

6.6
Location : hbAssignCodes
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : hbAssignCodes
Killed by : none
Substituted 1 with 2 → SURVIVED

8.8
Location : hbAssignCodes
Killed by : none
Substituted 1 with 0 → SURVIVED

9.9
Location : hbAssignCodes
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

10.10
Location : hbAssignCodes
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

11.11
Location : hbAssignCodes
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

12.12
Location : hbAssignCodes
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

521

1.1
Location : bsSetStream
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable bsStream → KILLED

522

1.1
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : bsSetStream
Killed by : none
Removed assignment to member variable bsLive → SURVIVED

3.3
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : bsSetStream
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : bsSetStream
Killed by : none
Substituted 0 with -1 → SURVIVED

523

1.1
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : bsSetStream
Killed by : none
Removed assignment to member variable bsBuff → SURVIVED

3.3
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : bsSetStream
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : bsSetStream
Killed by : none
Substituted 0 with -1 → SURVIVED

524

1.1
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : bsSetStream
Killed by : none
Removed assignment to member variable bytesOut → SURVIVED

3.3
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : bsSetStream
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : bsSetStream
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : bsSetStream
Killed by : none
Substituted 0 with -1 → SURVIVED

528

1.1
Location : bsFinishedWithStream
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : bsFinishedWithStream
Killed by : none
negated conditional → SURVIVED

3.3
Location : bsFinishedWithStream
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : bsFinishedWithStream
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

5.5
Location : bsFinishedWithStream
Killed by : none
Negated integer field bsLive → SURVIVED

6.6
Location : bsFinishedWithStream
Killed by : none
Less or equal to less than → SURVIVED

7.7
Location : bsFinishedWithStream
Killed by : none
Less or equal to greater than → SURVIVED

8.8
Location : bsFinishedWithStream
Killed by : none
Less or equal to greater or equal → SURVIVED

9.9
Location : bsFinishedWithStream
Killed by : none
Less or equal to equal → TIMED_OUT

10.10
Location : bsFinishedWithStream
Killed by : none
Less or equal to not equal → SURVIVED

11.11
Location : bsFinishedWithStream
Killed by : none
Incremented (a++) integer field bsLive → SURVIVED

12.12
Location : bsFinishedWithStream
Killed by : none
Decremented (a--) integer field bsLive → SURVIVED

13.13
Location : bsFinishedWithStream
Killed by : none
Incremented (++a) integer field bsLive → SURVIVED

14.14
Location : bsFinishedWithStream
Killed by : none
Decremented (--a) integer fieldbsLive → SURVIVED

529

1.1
Location : bsFinishedWithStream
Killed by : none
Substituted 24 with 25 → SURVIVED

2.2
Location : bsFinishedWithStream
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

3.3
Location : bsFinishedWithStream
Killed by : none
Negated integer field bsBuff → SURVIVED

4.4
Location : bsFinishedWithStream
Killed by : none
Substituted 24 with 1 → SURVIVED

5.5
Location : bsFinishedWithStream
Killed by : none
Substituted 24 with 0 → SURVIVED

6.6
Location : bsFinishedWithStream
Killed by : none
Substituted 24 with -1 → SURVIVED

7.7
Location : bsFinishedWithStream
Killed by : none
Substituted 24 with -24 → SURVIVED

8.8
Location : bsFinishedWithStream
Killed by : none
Substituted 24 with 25 → SURVIVED

9.9
Location : bsFinishedWithStream
Killed by : none
Substituted 24 with 23 → SURVIVED

10.10
Location : bsFinishedWithStream
Killed by : none
Incremented (a++) integer field bsBuff → SURVIVED

11.11
Location : bsFinishedWithStream
Killed by : none
Decremented (a--) integer field bsBuff → SURVIVED

12.12
Location : bsFinishedWithStream
Killed by : none
Incremented (++a) integer field bsBuff → SURVIVED

13.13
Location : bsFinishedWithStream
Killed by : none
Decremented (--a) integer fieldbsBuff → SURVIVED

531

1.1
Location : bsFinishedWithStream
Killed by : none
removed call to java/io/OutputStream::write → SURVIVED

2.2
Location : bsFinishedWithStream
Killed by : none
Negated integer local variable number 1 → SURVIVED

3.3
Location : bsFinishedWithStream
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : bsFinishedWithStream
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

5.5
Location : bsFinishedWithStream
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

6.6
Location : bsFinishedWithStream
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

535

1.1
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsFinishedWithStream
Killed by : none
Replaced Shift Left with Shift Right → SURVIVED

3.3
Location : bsFinishedWithStream
Killed by : none
Removed assignment to member variable bsBuff → SURVIVED

4.4
Location : bsFinishedWithStream
Killed by : none
Negated integer field bsBuff → SURVIVED

5.5
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 1 → SURVIVED

6.6
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 0 → SURVIVED

7.7
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with -1 → SURVIVED

8.8
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with -8 → SURVIVED

9.9
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 9 → SURVIVED

10.10
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 7 → SURVIVED

11.11
Location : bsFinishedWithStream
Killed by : none
Incremented (a++) integer field bsBuff → SURVIVED

12.12
Location : bsFinishedWithStream
Killed by : none
Decremented (a--) integer field bsBuff → SURVIVED

13.13
Location : bsFinishedWithStream
Killed by : none
Incremented (++a) integer field bsBuff → SURVIVED

14.14
Location : bsFinishedWithStream
Killed by : none
Decremented (--a) integer fieldbsBuff → SURVIVED

536

1.1
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsFinishedWithStream
Killed by : none
Replaced integer subtraction with addition → TIMED_OUT

3.3
Location : bsFinishedWithStream
Killed by : none
Removed assignment to member variable bsLive → TIMED_OUT

4.4
Location : bsFinishedWithStream
Killed by : none
Negated integer field bsLive → SURVIVED

5.5
Location : bsFinishedWithStream
Killed by : none
Replaced integer operation with first member → TIMED_OUT

6.6
Location : bsFinishedWithStream
Killed by : none
Replaced integer operation by second member → TIMED_OUT

7.7
Location : bsFinishedWithStream
Killed by : none
Replaced integer subtraction with addition → TIMED_OUT

8.8
Location : bsFinishedWithStream
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

9.9
Location : bsFinishedWithStream
Killed by : none
Replaced integer subtraction with division → SURVIVED

10.10
Location : bsFinishedWithStream
Killed by : none
Replaced integer subtraction with modulus → TIMED_OUT

11.11
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 1 → SURVIVED

12.12
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 0 → TIMED_OUT

13.13
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with -1 → TIMED_OUT

14.14
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with -8 → TIMED_OUT

15.15
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 9 → SURVIVED

16.16
Location : bsFinishedWithStream
Killed by : none
Substituted 8 with 7 → SURVIVED

17.17
Location : bsFinishedWithStream
Killed by : none
Incremented (a++) integer field bsLive → SURVIVED

18.18
Location : bsFinishedWithStream
Killed by : none
Decremented (a--) integer field bsLive → SURVIVED

19.19
Location : bsFinishedWithStream
Killed by : none
Incremented (++a) integer field bsLive → SURVIVED

20.20
Location : bsFinishedWithStream
Killed by : none
Decremented (--a) integer fieldbsLive → SURVIVED

537

1.1
Location : bsFinishedWithStream
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : bsFinishedWithStream
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : bsFinishedWithStream
Killed by : none
Removed assignment to member variable bytesOut → SURVIVED

4.4
Location : bsFinishedWithStream
Killed by : none
Negated integer field bytesOut → SURVIVED

5.5
Location : bsFinishedWithStream
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : bsFinishedWithStream
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : bsFinishedWithStream
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : bsFinishedWithStream
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : bsFinishedWithStream
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : bsFinishedWithStream
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : bsFinishedWithStream
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : bsFinishedWithStream
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : bsFinishedWithStream
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : bsFinishedWithStream
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : bsFinishedWithStream
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : bsFinishedWithStream
Killed by : none
Incremented (a++) integer field bytesOut → SURVIVED

17.17
Location : bsFinishedWithStream
Killed by : none
Decremented (a--) integer field bytesOut → SURVIVED

18.18
Location : bsFinishedWithStream
Killed by : none
Incremented (++a) integer field bytesOut → SURVIVED

19.19
Location : bsFinishedWithStream
Killed by : none
Decremented (--a) integer fieldbytesOut → SURVIVED

542

1.1
Location : bsW
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : bsW
Killed by : none
Substituted 8 with 9 → SURVIVED

3.3
Location : bsW
Killed by : none
negated conditional → TIMED_OUT

4.4
Location : bsW
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : bsW
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

6.6
Location : bsW
Killed by : none
Negated integer field bsLive → SURVIVED

7.7
Location : bsW
Killed by : none
Substituted 8 with 1 → SURVIVED

8.8
Location : bsW
Killed by : none
Substituted 8 with 0 → SURVIVED

9.9
Location : bsW
Killed by : none
Substituted 8 with -1 → SURVIVED

10.10
Location : bsW
Killed by : none
Substituted 8 with -8 → SURVIVED

11.11
Location : bsW
Killed by : none
Substituted 8 with 9 → SURVIVED

12.12
Location : bsW
Killed by : none
Substituted 8 with 7 → SURVIVED

13.13
Location : bsW
Killed by : none
Less than to less or equal → SURVIVED

14.14
Location : bsW
Killed by : none
Less than to greater than → TIMED_OUT

15.15
Location : bsW
Killed by : none
Less than to greater or equal → TIMED_OUT

16.16
Location : bsW
Killed by : none
Less than to equal → TIMED_OUT

17.17
Location : bsW
Killed by : none
Less than to not equal → SURVIVED

18.18
Location : bsW
Killed by : none
Incremented (a++) integer field bsLive → SURVIVED

19.19
Location : bsW
Killed by : none
Decremented (a--) integer field bsLive → SURVIVED

20.20
Location : bsW
Killed by : none
Incremented (++a) integer field bsLive → SURVIVED

21.21
Location : bsW
Killed by : none
Decremented (--a) integer fieldbsLive → SURVIVED

543

1.1
Location : bsW
Killed by : none
Substituted 24 with 25 → SURVIVED

2.2
Location : bsW
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

3.3
Location : bsW
Killed by : none
Negated integer field bsBuff → SURVIVED

4.4
Location : bsW
Killed by : none
Substituted 24 with 1 → SURVIVED

5.5
Location : bsW
Killed by : none
Substituted 24 with 0 → SURVIVED

6.6
Location : bsW
Killed by : none
Substituted 24 with -1 → SURVIVED

7.7
Location : bsW
Killed by : none
Substituted 24 with -24 → SURVIVED

8.8
Location : bsW
Killed by : none
Substituted 24 with 25 → SURVIVED

9.9
Location : bsW
Killed by : none
Substituted 24 with 23 → SURVIVED

10.10
Location : bsW
Killed by : none
Incremented (a++) integer field bsBuff → SURVIVED

11.11
Location : bsW
Killed by : none
Decremented (a--) integer field bsBuff → SURVIVED

12.12
Location : bsW
Killed by : none
Incremented (++a) integer field bsBuff → SURVIVED

13.13
Location : bsW
Killed by : none
Decremented (--a) integer fieldbsBuff → SURVIVED

545

1.1
Location : bsW
Killed by : none
removed call to java/io/OutputStream::write → SURVIVED

2.2
Location : bsW
Killed by : none
Negated integer local variable number 3 → SURVIVED

3.3
Location : bsW
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

4.4
Location : bsW
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

5.5
Location : bsW
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

6.6
Location : bsW
Killed by : none
Decremented (--a) integer local variable number 3 → SURVIVED

549

1.1
Location : bsW
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsW
Killed by : none
Replaced Shift Left with Shift Right → SURVIVED

3.3
Location : bsW
Killed by : none
Removed assignment to member variable bsBuff → SURVIVED

4.4
Location : bsW
Killed by : none
Negated integer field bsBuff → SURVIVED

5.5
Location : bsW
Killed by : none
Substituted 8 with 1 → SURVIVED

6.6
Location : bsW
Killed by : none
Substituted 8 with 0 → SURVIVED

7.7
Location : bsW
Killed by : none
Substituted 8 with -1 → SURVIVED

8.8
Location : bsW
Killed by : none
Substituted 8 with -8 → SURVIVED

9.9
Location : bsW
Killed by : none
Substituted 8 with 9 → SURVIVED

10.10
Location : bsW
Killed by : none
Substituted 8 with 7 → SURVIVED

11.11
Location : bsW
Killed by : none
Incremented (a++) integer field bsBuff → SURVIVED

12.12
Location : bsW
Killed by : none
Decremented (a--) integer field bsBuff → SURVIVED

13.13
Location : bsW
Killed by : none
Incremented (++a) integer field bsBuff → SURVIVED

14.14
Location : bsW
Killed by : none
Decremented (--a) integer fieldbsBuff → SURVIVED

550

1.1
Location : bsW
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsW
Killed by : none
Replaced integer subtraction with addition → TIMED_OUT

3.3
Location : bsW
Killed by : none
Removed assignment to member variable bsLive → TIMED_OUT

4.4
Location : bsW
Killed by : none
Negated integer field bsLive → SURVIVED

5.5
Location : bsW
Killed by : none
Replaced integer operation with first member → TIMED_OUT

6.6
Location : bsW
Killed by : none
Replaced integer operation by second member → TIMED_OUT

7.7
Location : bsW
Killed by : none
Replaced integer subtraction with addition → TIMED_OUT

8.8
Location : bsW
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

9.9
Location : bsW
Killed by : none
Replaced integer subtraction with division → SURVIVED

10.10
Location : bsW
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

11.11
Location : bsW
Killed by : none
Substituted 8 with 1 → SURVIVED

12.12
Location : bsW
Killed by : none
Substituted 8 with 0 → TIMED_OUT

13.13
Location : bsW
Killed by : none
Substituted 8 with -1 → TIMED_OUT

14.14
Location : bsW
Killed by : none
Substituted 8 with -8 → TIMED_OUT

15.15
Location : bsW
Killed by : none
Substituted 8 with 9 → SURVIVED

16.16
Location : bsW
Killed by : none
Substituted 8 with 7 → SURVIVED

17.17
Location : bsW
Killed by : none
Incremented (a++) integer field bsLive → SURVIVED

18.18
Location : bsW
Killed by : none
Decremented (a--) integer field bsLive → SURVIVED

19.19
Location : bsW
Killed by : none
Incremented (++a) integer field bsLive → SURVIVED

20.20
Location : bsW
Killed by : none
Decremented (--a) integer fieldbsLive → SURVIVED

551

1.1
Location : bsW
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : bsW
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : bsW
Killed by : none
Removed assignment to member variable bytesOut → SURVIVED

4.4
Location : bsW
Killed by : none
Negated integer field bytesOut → SURVIVED

5.5
Location : bsW
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : bsW
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : bsW
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : bsW
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : bsW
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : bsW
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : bsW
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : bsW
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : bsW
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : bsW
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : bsW
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : bsW
Killed by : none
Incremented (a++) integer field bytesOut → SURVIVED

17.17
Location : bsW
Killed by : none
Decremented (a--) integer field bytesOut → SURVIVED

18.18
Location : bsW
Killed by : none
Incremented (++a) integer field bytesOut → SURVIVED

19.19
Location : bsW
Killed by : none
Decremented (--a) integer fieldbytesOut → SURVIVED

553

1.1
Location : bsW
Killed by : none
Substituted 32 with 33 → SURVIVED

2.2
Location : bsW
Killed by : none
Replaced integer subtraction with addition → SURVIVED

3.3
Location : bsW
Killed by : none
Replaced integer subtraction with addition → SURVIVED

4.4
Location : bsW
Killed by : none
Replaced Shift Left with Shift Right → SURVIVED

5.5
Location : bsW
Killed by : none
Replaced bitwise OR with AND → SURVIVED

6.6
Location : bsW
Killed by : none
Removed assignment to member variable bsBuff → SURVIVED

7.7
Location : bsW
Killed by : none
Negated integer field bsBuff → SURVIVED

8.8
Location : bsW
Killed by : none
Negated integer local variable number 2 → SURVIVED

9.9
Location : bsW
Killed by : none
Negated integer field bsLive → SURVIVED

10.10
Location : bsW
Killed by : none
Negated integer local variable number 1 → SURVIVED

11.11
Location : bsW
Killed by : none
Replaced integer operation with first member → SURVIVED

12.12
Location : bsW
Killed by : none
Replaced integer operation with first member → SURVIVED

13.13
Location : bsW
Killed by : none
Replaced integer operation by second member → SURVIVED

14.14
Location : bsW
Killed by : none
Replaced integer operation by second member → SURVIVED

15.15
Location : bsW
Killed by : none
Replaced integer subtraction with addition → SURVIVED

16.16
Location : bsW
Killed by : none
Replaced integer subtraction with addition → SURVIVED

17.17
Location : bsW
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

18.18
Location : bsW
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

19.19
Location : bsW
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with division → KILLED

20.20
Location : bsW
Killed by : none
Replaced integer subtraction with division → SURVIVED

21.21
Location : bsW
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with modulus → KILLED

22.22
Location : bsW
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

23.23
Location : bsW
Killed by : none
Substituted 32 with 1 → SURVIVED

24.24
Location : bsW
Killed by : none
Substituted 32 with 0 → SURVIVED

25.25
Location : bsW
Killed by : none
Substituted 32 with -1 → SURVIVED

26.26
Location : bsW
Killed by : none
Substituted 32 with -32 → SURVIVED

27.27
Location : bsW
Killed by : none
Substituted 32 with 33 → SURVIVED

28.28
Location : bsW
Killed by : none
Substituted 32 with 31 → SURVIVED

29.29
Location : bsW
Killed by : none
Replaced integer or with and → SURVIVED

30.30
Location : bsW
Killed by : none
Replaced integer or by first member → SURVIVED

31.31
Location : bsW
Killed by : none
Replace integer or by second member → SURVIVED

32.32
Location : bsW
Killed by : none
Incremented (a++) integer field bsBuff → SURVIVED

33.33
Location : bsW
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

34.34
Location : bsW
Killed by : none
Incremented (a++) integer field bsLive → SURVIVED

35.35
Location : bsW
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

36.36
Location : bsW
Killed by : none
Decremented (a--) integer field bsBuff → SURVIVED

37.37
Location : bsW
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

38.38
Location : bsW
Killed by : none
Decremented (a--) integer field bsLive → SURVIVED

39.39
Location : bsW
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

40.40
Location : bsW
Killed by : none
Incremented (++a) integer field bsBuff → SURVIVED

41.41
Location : bsW
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

42.42
Location : bsW
Killed by : none
Incremented (++a) integer field bsLive → SURVIVED

43.43
Location : bsW
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

44.44
Location : bsW
Killed by : none
Decremented (--a) integer fieldbsBuff → SURVIVED

45.45
Location : bsW
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

46.46
Location : bsW
Killed by : none
Decremented (--a) integer fieldbsLive → SURVIVED

47.47
Location : bsW
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

554

1.1
Location : bsW
Killed by : none
Replaced integer addition with subtraction → SURVIVED

2.2
Location : bsW
Killed by : none
Removed assignment to member variable bsLive → SURVIVED

3.3
Location : bsW
Killed by : none
Negated integer field bsLive → SURVIVED

4.4
Location : bsW
Killed by : none
Negated integer local variable number 1 → SURVIVED

5.5
Location : bsW
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : bsW
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : bsW
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : bsW
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : bsW
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : bsW
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : bsW
Killed by : none
Incremented (a++) integer field bsLive → SURVIVED

12.12
Location : bsW
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

13.13
Location : bsW
Killed by : none
Decremented (a--) integer field bsLive → SURVIVED

14.14
Location : bsW
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

15.15
Location : bsW
Killed by : none
Incremented (++a) integer field bsLive → SURVIVED

16.16
Location : bsW
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

17.17
Location : bsW
Killed by : none
Decremented (--a) integer fieldbsLive → SURVIVED

18.18
Location : bsW
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

558

1.1
Location : bsPutUChar
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsPutUChar
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

3.3
Location : bsPutUChar
Killed by : none
Negated integer local variable number 1 → SURVIVED

4.4
Location : bsPutUChar
Killed by : none
Substituted 8 with 1 → SURVIVED

5.5
Location : bsPutUChar
Killed by : none
Substituted 8 with 0 → SURVIVED

6.6
Location : bsPutUChar
Killed by : none
Substituted 8 with -1 → SURVIVED

7.7
Location : bsPutUChar
Killed by : none
Substituted 8 with -8 → SURVIVED

8.8
Location : bsPutUChar
Killed by : none
Substituted 8 with 9 → SURVIVED

9.9
Location : bsPutUChar
Killed by : none
Substituted 8 with 7 → SURVIVED

10.10
Location : bsPutUChar
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

11.11
Location : bsPutUChar
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

12.12
Location : bsPutUChar
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

13.13
Location : bsPutUChar
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

562

1.1
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsPutint
Killed by : none
Substituted 24 with 25 → SURVIVED

3.3
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

4.4
Location : bsPutint
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

5.5
Location : bsPutint
Killed by : none
Replaced bitwise AND with OR → SURVIVED

6.6
Location : bsPutint
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

7.7
Location : bsPutint
Killed by : none
Negated integer local variable number 1 → SURVIVED

8.8
Location : bsPutint
Killed by : none
Substituted 8 with 1 → SURVIVED

9.9
Location : bsPutint
Killed by : none
Substituted 24 with 1 → SURVIVED

10.10
Location : bsPutint
Killed by : none
Substituted 255 with 1 → SURVIVED

11.11
Location : bsPutint
Killed by : none
Substituted 8 with 0 → SURVIVED

12.12
Location : bsPutint
Killed by : none
Substituted 24 with 0 → SURVIVED

13.13
Location : bsPutint
Killed by : none
Substituted 255 with 0 → SURVIVED

14.14
Location : bsPutint
Killed by : none
Substituted 8 with -1 → SURVIVED

15.15
Location : bsPutint
Killed by : none
Substituted 24 with -1 → SURVIVED

16.16
Location : bsPutint
Killed by : none
Substituted 255 with -1 → SURVIVED

17.17
Location : bsPutint
Killed by : none
Substituted 8 with -8 → SURVIVED

18.18
Location : bsPutint
Killed by : none
Substituted 24 with -24 → SURVIVED

19.19
Location : bsPutint
Killed by : none
Substituted 255 with -255 → SURVIVED

20.20
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

21.21
Location : bsPutint
Killed by : none
Substituted 24 with 25 → SURVIVED

22.22
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

23.23
Location : bsPutint
Killed by : none
Substituted 8 with 7 → SURVIVED

24.24
Location : bsPutint
Killed by : none
Substituted 24 with 23 → SURVIVED

25.25
Location : bsPutint
Killed by : none
Substituted 255 with 254 → SURVIVED

26.26
Location : bsPutint
Killed by : none
Replaced integer and with or → SURVIVED

27.27
Location : bsPutint
Killed by : none
Replaced integer and by first member → SURVIVED

28.28
Location : bsPutint
Killed by : none
Replace integer and by second member → SURVIVED

29.29
Location : bsPutint
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

30.30
Location : bsPutint
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

31.31
Location : bsPutint
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

32.32
Location : bsPutint
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

563

1.1
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsPutint
Killed by : none
Substituted 16 with 17 → SURVIVED

3.3
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

4.4
Location : bsPutint
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

5.5
Location : bsPutint
Killed by : none
Replaced bitwise AND with OR → SURVIVED

6.6
Location : bsPutint
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

7.7
Location : bsPutint
Killed by : none
Negated integer local variable number 1 → SURVIVED

8.8
Location : bsPutint
Killed by : none
Substituted 8 with 1 → SURVIVED

9.9
Location : bsPutint
Killed by : none
Substituted 16 with 1 → SURVIVED

10.10
Location : bsPutint
Killed by : none
Substituted 255 with 1 → SURVIVED

11.11
Location : bsPutint
Killed by : none
Substituted 8 with 0 → SURVIVED

12.12
Location : bsPutint
Killed by : none
Substituted 16 with 0 → SURVIVED

13.13
Location : bsPutint
Killed by : none
Substituted 255 with 0 → SURVIVED

14.14
Location : bsPutint
Killed by : none
Substituted 8 with -1 → SURVIVED

15.15
Location : bsPutint
Killed by : none
Substituted 16 with -1 → SURVIVED

16.16
Location : bsPutint
Killed by : none
Substituted 255 with -1 → SURVIVED

17.17
Location : bsPutint
Killed by : none
Substituted 8 with -8 → SURVIVED

18.18
Location : bsPutint
Killed by : none
Substituted 16 with -16 → SURVIVED

19.19
Location : bsPutint
Killed by : none
Substituted 255 with -255 → SURVIVED

20.20
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

21.21
Location : bsPutint
Killed by : none
Substituted 16 with 17 → SURVIVED

22.22
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

23.23
Location : bsPutint
Killed by : none
Substituted 8 with 7 → SURVIVED

24.24
Location : bsPutint
Killed by : none
Substituted 16 with 15 → SURVIVED

25.25
Location : bsPutint
Killed by : none
Substituted 255 with 254 → SURVIVED

26.26
Location : bsPutint
Killed by : none
Replaced integer and with or → SURVIVED

27.27
Location : bsPutint
Killed by : none
Replaced integer and by first member → SURVIVED

28.28
Location : bsPutint
Killed by : none
Replace integer and by second member → SURVIVED

29.29
Location : bsPutint
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

30.30
Location : bsPutint
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

31.31
Location : bsPutint
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

32.32
Location : bsPutint
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

564

1.1
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

3.3
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

4.4
Location : bsPutint
Killed by : none
Replaced Shift Right with Shift Left → SURVIVED

5.5
Location : bsPutint
Killed by : none
Replaced bitwise AND with OR → SURVIVED

6.6
Location : bsPutint
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

7.7
Location : bsPutint
Killed by : none
Negated integer local variable number 1 → SURVIVED

8.8
Location : bsPutint
Killed by : none
Substituted 8 with 1 → SURVIVED

9.9
Location : bsPutint
Killed by : none
Substituted 8 with 1 → SURVIVED

10.10
Location : bsPutint
Killed by : none
Substituted 255 with 1 → SURVIVED

11.11
Location : bsPutint
Killed by : none
Substituted 8 with 0 → SURVIVED

12.12
Location : bsPutint
Killed by : none
Substituted 8 with 0 → SURVIVED

13.13
Location : bsPutint
Killed by : none
Substituted 255 with 0 → SURVIVED

14.14
Location : bsPutint
Killed by : none
Substituted 8 with -1 → SURVIVED

15.15
Location : bsPutint
Killed by : none
Substituted 8 with -1 → SURVIVED

16.16
Location : bsPutint
Killed by : none
Substituted 255 with -1 → SURVIVED

17.17
Location : bsPutint
Killed by : none
Substituted 8 with -8 → SURVIVED

18.18
Location : bsPutint
Killed by : none
Substituted 8 with -8 → SURVIVED

19.19
Location : bsPutint
Killed by : none
Substituted 255 with -255 → SURVIVED

20.20
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

21.21
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

22.22
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

23.23
Location : bsPutint
Killed by : none
Substituted 8 with 7 → SURVIVED

24.24
Location : bsPutint
Killed by : none
Substituted 8 with 7 → SURVIVED

25.25
Location : bsPutint
Killed by : none
Substituted 255 with 254 → SURVIVED

26.26
Location : bsPutint
Killed by : none
Replaced integer and with or → SURVIVED

27.27
Location : bsPutint
Killed by : none
Replaced integer and by first member → SURVIVED

28.28
Location : bsPutint
Killed by : none
Replace integer and by second member → SURVIVED

29.29
Location : bsPutint
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

30.30
Location : bsPutint
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

31.31
Location : bsPutint
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

32.32
Location : bsPutint
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

565

1.1
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

2.2
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

3.3
Location : bsPutint
Killed by : none
Replaced bitwise AND with OR → SURVIVED

4.4
Location : bsPutint
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

5.5
Location : bsPutint
Killed by : none
Negated integer local variable number 1 → SURVIVED

6.6
Location : bsPutint
Killed by : none
Substituted 8 with 1 → SURVIVED

7.7
Location : bsPutint
Killed by : none
Substituted 255 with 1 → SURVIVED

8.8
Location : bsPutint
Killed by : none
Substituted 8 with 0 → SURVIVED

9.9
Location : bsPutint
Killed by : none
Substituted 255 with 0 → SURVIVED

10.10
Location : bsPutint
Killed by : none
Substituted 8 with -1 → SURVIVED

11.11
Location : bsPutint
Killed by : none
Substituted 255 with -1 → SURVIVED

12.12
Location : bsPutint
Killed by : none
Substituted 8 with -8 → SURVIVED

13.13
Location : bsPutint
Killed by : none
Substituted 255 with -255 → SURVIVED

14.14
Location : bsPutint
Killed by : none
Substituted 8 with 9 → SURVIVED

15.15
Location : bsPutint
Killed by : none
Substituted 255 with 256 → SURVIVED

16.16
Location : bsPutint
Killed by : none
Substituted 8 with 7 → SURVIVED

17.17
Location : bsPutint
Killed by : none
Substituted 255 with 254 → SURVIVED

18.18
Location : bsPutint
Killed by : none
Replaced integer and with or → SURVIVED

19.19
Location : bsPutint
Killed by : none
Replaced integer and by first member → SURVIVED

20.20
Location : bsPutint
Killed by : none
Replace integer and by second member → SURVIVED

21.21
Location : bsPutint
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

22.22
Location : bsPutint
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

23.23
Location : bsPutint
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

24.24
Location : bsPutint
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

569

1.1
Location : bsPutIntVS
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

2.2
Location : bsPutIntVS
Killed by : none
Negated integer local variable number 1 → SURVIVED

3.3
Location : bsPutIntVS
Killed by : none
Negated integer local variable number 2 → SURVIVED

4.4
Location : bsPutIntVS
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

5.5
Location : bsPutIntVS
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

6.6
Location : bsPutIntVS
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

7.7
Location : bsPutIntVS
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

8.8
Location : bsPutIntVS
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

9.9
Location : bsPutIntVS
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

10.10
Location : bsPutIntVS
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

11.11
Location : bsPutIntVS
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

573

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 258 with 259 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 1 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 0 → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 0 → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -1 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -1 → KILLED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -6 → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -258 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 258 with 259 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 5 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Substituted 258 with 257 → SURVIVED

576

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

579

1.1
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer field nInUse → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 2 with 0 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 2 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 2 with -2 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nInUse → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nInUse → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nInUse → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnInUse → SURVIVED

580

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 7 → KILLED

5.5
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

8.8
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 6 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 6 with 0 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Substituted 6 with -1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 6 with -6 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 7 → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

23.23
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

27.27
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

28.28
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

581

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 13 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 13 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

582

1.1
Location : sendMTFValues
Killed by : none
Substituted 15 with 16 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 15 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 15 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 15 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 15 with -15 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 15 with 16 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 15 with 14 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

13.13
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

15.15
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

587

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
greater than to less than → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
greater than to less or equal → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
greater than to greater or equal → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
greater than to equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
greater than to not equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

588

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

591

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 200 with 201 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 200 with 1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 200 with 0 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 200 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 200 with -200 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 200 with 201 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 200 with 199 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

592

1.1
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with 0 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with -2 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

593

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 600 with 601 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 600 with 1 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Substituted 600 with 0 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Substituted 600 with -1 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Substituted 600 with -600 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 600 with 601 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 600 with 599 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → NO_COVERAGE

594

1.1
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 3 with 1 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 3 with 0 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 3 with -1 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 3 with -3 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 3 with 2 → NO_COVERAGE

595

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 1200 with 1201 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 1200 with 1 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Substituted 1200 with 0 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Substituted 1200 with -1 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Substituted 1200 with -1200 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 1200 with 1201 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 1200 with 1199 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → NO_COVERAGE

596

1.1
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 4 with 1 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 4 with 0 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 4 with -1 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 4 with -4 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 4 with 3 → NO_COVERAGE

597

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 2400 with 2401 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 2400 with 1 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Substituted 2400 with 0 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Substituted 2400 with -1 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Substituted 2400 with -2400 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 2400 with 2401 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 2400 with 2399 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → NO_COVERAGE

598

1.1
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 5 with 1 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 5 with 0 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 5 with -1 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 5 with -5 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 5 with 4 → NO_COVERAGE

600

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 6 with 1 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 6 with 0 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 6 with -1 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 6 with -6 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → NO_COVERAGE

606

1.1
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 17 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

607

1.1
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

608

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

609

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to less than → KILLED

7.7
Location : sendMTFValues
Killed by : none
Less or equal to greater than → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Less or equal to equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 18 → TIMED_OUT

12.12
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 18 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 18 → TIMED_OUT

14.14
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 18 → SURVIVED

610

1.1
Location : sendMTFValues
Killed by : none
Replaced integer division with multiplication → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 8 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 7 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer division with multiplication → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer division with modulus → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer division with addition → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer division with subtraction → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 19 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 18 → TIMED_OUT

12.12
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 19 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 18 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 19 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 18 → TIMED_OUT

16.16
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 19 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 18 → SURVIVED

611

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 2 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

612

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

613

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Negated integer local variable number 12 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Negated integer local variable number 10 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

27.27
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

30.30
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

31.31
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

32.32
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

33.33
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

34.34
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

35.35
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

36.36
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 21 → SURVIVED

37.37
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 20 → SURVIVED

38.38
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

39.39
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 13 → SURVIVED

40.40
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 21 → SURVIVED

41.41
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 20 → SURVIVED

42.42
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 7 → KILLED

43.43
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

44.44
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 21 → SURVIVED

45.45
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 20 → SURVIVED

46.46
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

47.47
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 13 → SURVIVED

48.48
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 21 → SURVIVED

49.49
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 20 → SURVIVED

50.50
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

51.51
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

614

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed increment 1 → KILLED

615

1.1
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 12 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Negated integer array field → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 21 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 21 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 21 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 21 → SURVIVED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

618

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Negated integer local variable number 7 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Negated integer local variable number 7 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

24.24
Location : sendMTFValues
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

25.25
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

26.26
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

27.27
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

28.28
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

29.29
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

30.30
Location : sendMTFValues
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

31.31
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

32.32
Location : sendMTFValues
Killed by : none
Replaced integer modulus with division → NO_COVERAGE

33.33
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

34.34
Location : sendMTFValues
Killed by : none
Replaced integer modulus with addition → NO_COVERAGE

35.35
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

36.36
Location : sendMTFValues
Killed by : none
Replaced integer modulus with subtraction → NO_COVERAGE

37.37
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

38.38
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

39.39
Location : sendMTFValues
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

40.40
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

41.41
Location : sendMTFValues
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

42.42
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

43.43
Location : sendMTFValues
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

44.44
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

45.45
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

46.46
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

47.47
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

48.48
Location : sendMTFValues
Killed by : none
Less or equal to less than → SURVIVED

49.49
Location : sendMTFValues
Killed by : none
equal to less than → SURVIVED

50.50
Location : sendMTFValues
Killed by : none
equal to less than → SURVIVED

51.51
Location : sendMTFValues
Killed by : none
equal to less than → NO_COVERAGE

52.52
Location : sendMTFValues
Killed by : none
Less or equal to greater than → SURVIVED

53.53
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

54.54
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

55.55
Location : sendMTFValues
Killed by : none
equal to less or equal → NO_COVERAGE

56.56
Location : sendMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

57.57
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

58.58
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

59.59
Location : sendMTFValues
Killed by : none
equal to greater than → NO_COVERAGE

60.60
Location : sendMTFValues
Killed by : none
Less or equal to equal → SURVIVED

61.61
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

62.62
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

63.63
Location : sendMTFValues
Killed by : none
equal to greater or equal → NO_COVERAGE

64.64
Location : sendMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

65.65
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

66.66
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

67.67
Location : sendMTFValues
Killed by : none
equal to not equal → NO_COVERAGE

68.68
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

69.69
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

70.70
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 18 → SURVIVED

71.71
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

72.72
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 18 → SURVIVED

73.73
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 17 → NO_COVERAGE

74.74
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 18 → NO_COVERAGE

75.75
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

76.76
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

77.77
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 18 → SURVIVED

78.78
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

79.79
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 18 → KILLED

80.80
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 17 → NO_COVERAGE

81.81
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 18 → NO_COVERAGE

82.82
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

83.83
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

84.84
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 18 → SURVIVED

85.85
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

86.86
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 18 → SURVIVED

87.87
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 17 → NO_COVERAGE

88.88
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 18 → NO_COVERAGE

89.89
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

90.90
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

91.91
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 18 → SURVIVED

92.92
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

93.93
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 18 → KILLED

94.94
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 17 → NO_COVERAGE

95.95
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 18 → NO_COVERAGE

620

1.1
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 21 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 21 → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 21 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 21 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

621

1.1
Location : sendMTFValues
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Removed increment -1 → NO_COVERAGE

624

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 13 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 13 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

625

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 5 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Negated integer local variable number 5 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Less than to less or equal → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater than to less than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Less than to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater than to less or equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Less than to greater or equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater than to greater or equal → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Less than to equal → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
greater than to equal → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Less than to not equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
greater than to not equal → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

27.27
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

28.28
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

29.29
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

30.30
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 7 → KILLED

31.31
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

32.32
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

33.33
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

34.34
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

35.35
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

36.36
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

37.37
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

38.38
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

626

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 2 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 18 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 18 → KILLED

24.24
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

25.25
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 18 → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

27.27
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 18 → KILLED

28.28
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

628

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 15 with 16 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 15 with 1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 15 with 0 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Substituted 15 with -1 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Substituted 15 with -15 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 2 → KILLED

20.20
Location : sendMTFValues
Killed by : none
Substituted 15 with 16 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Substituted 15 with 14 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 18 → KILLED

24.24
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 18 → KILLED

26.26
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

27.27
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 18 → KILLED

28.28
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

29.29
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 18 → KILLED

30.30
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 2 → TIMED_OUT

632

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from -1 to 1 → KILLED

2.2
Location : sendMTFValues
Killed by : none
Removed increment -1 → TIMED_OUT

633

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

634

1.1
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 8 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 12 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 19 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 21 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 19 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 21 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 19 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 21 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 19 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 21 → SURVIVED

638

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 258 with 259 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 1 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 0 → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 0 → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -1 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -1 → KILLED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -6 → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -258 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 258 with 259 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 258 with 257 → SURVIVED

639

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 1 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 0 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -6 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → SURVIVED

640

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 1 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 0 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -6 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → SURVIVED

644

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Changed increment from 1 to -1 → TIMED_OUT

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 13 → TIMED_OUT

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 4 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 4 with 0 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 4 with -1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 4 with -4 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Substituted 4 with 3 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 11 → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 11 → TIMED_OUT

27.27
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 11 → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 11 → TIMED_OUT

645

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

646

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

649

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

650

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 13 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 13 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

651

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → TIMED_OUT

6.6
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

13.13
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

655

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

656

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

657

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

661

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less than to less or equal → KILLED

8.8
Location : sendMTFValues
Killed by : none
Less than to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Less than to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Less than to equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Less than to not equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → SURVIVED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

15.15
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer field nMTF → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

664

1.1
Location : sendMTFValues
Killed by : none
Substituted 50 with 51 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

11.11
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

13.13
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

15.15
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with modulus → KILLED

18.18
Location : sendMTFValues
Killed by : none
Substituted 50 with 1 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 50 with 0 → KILLED

20.20
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 50 with -1 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 50 with -50 → KILLED

24.24
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Substituted 50 with 51 → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

27.27
Location : sendMTFValues
Killed by : none
Substituted 50 with 49 → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

30.30
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

31.31
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

32.32
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

665

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Less than to less or equal → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Less than to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Less than to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Less than to equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Less than to not equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

666

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field nMTF → KILLED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with modulus → KILLED

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 2 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer field nMTF → KILLED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

673

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

674

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

677

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 6 with 1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 6 with 0 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 6 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 6 with -6 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
not equal to less than → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
not equal to less or equal → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
not equal to greater than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
not equal to greater or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
not equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

679

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

680

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Removed increment 1 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 20 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
greater than to less than → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
greater than to less or equal → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
greater than to greater or equal → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
greater than to equal → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
greater than to not equal → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

26.26
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

681

1.1
Location : sendMTFValues
Killed by : none
Negated integer local variable number 20 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated short array field → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Decremented (a--) short array field → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Decremented (--a) short array field → NO_COVERAGE

682

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 21 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 21 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 27 → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 21 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 27 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 21 → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 27 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 21 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 27 → NO_COVERAGE

683

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 19 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 21 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 22 → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 27 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 22 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 27 → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 22 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 27 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 22 → NO_COVERAGE

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 27 → NO_COVERAGE

684

1.1
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 18 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 21 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 23 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 27 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 23 → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 27 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 23 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 27 → NO_COVERAGE

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 23 → NO_COVERAGE

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 27 → NO_COVERAGE

685

1.1
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 17 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 21 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 3 with 1 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 3 with 0 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
Substituted 3 with -1 → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
Substituted 3 with -3 → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Substituted 3 with 2 → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 24 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 27 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 24 → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 27 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 24 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 27 → NO_COVERAGE

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 24 → NO_COVERAGE

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 27 → NO_COVERAGE

686

1.1
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 21 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 4 with 1 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 4 with 0 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
Substituted 4 with -1 → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
Substituted 4 with -4 → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Substituted 4 with 3 → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 25 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 27 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 25 → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 27 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 25 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 27 → NO_COVERAGE

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 25 → NO_COVERAGE

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 27 → NO_COVERAGE

687

1.1
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 21 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Substituted 5 with 1 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Substituted 5 with 0 → NO_COVERAGE

13.13
Location : sendMTFValues
Killed by : none
Substituted 5 with -1 → NO_COVERAGE

14.14
Location : sendMTFValues
Killed by : none
Substituted 5 with -5 → NO_COVERAGE

15.15
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → NO_COVERAGE

16.16
Location : sendMTFValues
Killed by : none
Substituted 5 with 4 → NO_COVERAGE

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 26 → NO_COVERAGE

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 27 → NO_COVERAGE

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 26 → NO_COVERAGE

20.20
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 27 → NO_COVERAGE

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 26 → NO_COVERAGE

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 27 → NO_COVERAGE

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 26 → NO_COVERAGE

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 27 → NO_COVERAGE

689

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 21 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 21 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 21 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 21 → NO_COVERAGE

690

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 19 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 22 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 22 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 22 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 22 → NO_COVERAGE

691

1.1
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 18 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 23 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 23 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 23 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 23 → NO_COVERAGE

692

1.1
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 17 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 3 with 1 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 3 with 0 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 3 with -1 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 3 with -3 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Substituted 3 with 2 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 24 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 24 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 24 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 24 → NO_COVERAGE

693

1.1
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 4 with 1 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 4 with 0 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 4 with -1 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 4 with -4 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 4 with 5 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Substituted 4 with 3 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 25 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 25 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 25 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 25 → NO_COVERAGE

694

1.1
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → NO_COVERAGE

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

3.3
Location : sendMTFValues
Killed by : none
Substituted 5 with 1 → NO_COVERAGE

4.4
Location : sendMTFValues
Killed by : none
Substituted 5 with 0 → NO_COVERAGE

5.5
Location : sendMTFValues
Killed by : none
Substituted 5 with -1 → NO_COVERAGE

6.6
Location : sendMTFValues
Killed by : none
Substituted 5 with -5 → NO_COVERAGE

7.7
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → NO_COVERAGE

8.8
Location : sendMTFValues
Killed by : none
Substituted 5 with 4 → NO_COVERAGE

9.9
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 26 → NO_COVERAGE

10.10
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 26 → NO_COVERAGE

11.11
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 26 → NO_COVERAGE

12.12
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 26 → NO_COVERAGE

696

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

6.6
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

7.7
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → SURVIVED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
greater than to less than → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
greater than to less or equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
greater than to greater or equal → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
greater than to equal → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater than to not equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 7 → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 7 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 7 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

697

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated short array field → KILLED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) short array field → KILLED

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) short array field → KILLED

698

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

699

1.1
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Negated short array field → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 12 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 21 → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

17.17
Location : sendMTFValues
Killed by : none
Decremented (a--) short array field → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → TIMED_OUT

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 21 → KILLED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 21 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) short array field → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

27.27
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 21 → KILLED

708

1.1
Location : sendMTFValues
Killed by : none
Substituted 999999999 with 1000000000 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 999999999 with 1 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 999999999 with 0 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 999999999 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 999999999 with -999999999 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Substituted 999999999 with 1000000000 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 999999999 with 999999998 → SURVIVED

709

1.1
Location : sendMTFValues
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted -1 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted -1 with 0 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted -1 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted -1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted -1 with -2 → SURVIVED

710

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less than → KILLED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less or equal → KILLED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to not equal → KILLED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

711

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Negated short array field → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 22 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less than → KILLED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less or equal → KILLED

10.10
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to not equal → KILLED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 10 → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

17.17
Location : sendMTFValues
Killed by : none
Decremented (a--) short array field → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 10 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 10 → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) short array field → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 10 → SURVIVED

712

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

2.2
Location : sendMTFValues
Killed by : none
Negated short array field → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Decremented (a--) short array field → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

10.10
Location : sendMTFValues
Killed by : none
Decremented (--a) short array field → SURVIVED

713

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

2.2
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

716

1.1
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 14 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 22 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 10 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 8 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 10 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 10 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 8 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 10 → SURVIVED

717

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 23 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Negated integer array field → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 9 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

718

1.1
Location : sendMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 23 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 12 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 12 → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 9 → KILLED

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 12 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 12 → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

719

1.1
Location : sendMTFValues
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Removed increment 1 → SURVIVED

724

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

6.6
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

7.7
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → SURVIVED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
greater than to less than → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
greater than to less or equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
greater than to greater or equal → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
greater than to equal → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater than to not equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 7 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 7 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 7 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

725

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → TIMED_OUT

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 23 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated short array field → KILLED

6.6
Location : sendMTFValues
Killed by : none
Negated integer array field → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer addition with subtraction → TIMED_OUT

10.10
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → TIMED_OUT

15.15
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → TIMED_OUT

16.16
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 9 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 9 → KILLED

23.23
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) short array field → KILLED

25.25
Location : sendMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 9 → KILLED

27.27
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

30.30
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

31.31
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

32.32
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) short array field → KILLED

33.33
Location : sendMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

728

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

734

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

735

1.1
Location : sendMTFValues
Killed by : none
Substituted 20 with 21 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::hbMakeCodeLengths → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 20 with 1 → TIMED_OUT

7.7
Location : sendMTFValues
Killed by : none
Substituted 20 with 0 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : none
Substituted 20 with -1 → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : none
Substituted 20 with -20 → TIMED_OUT

10.10
Location : sendMTFValues
Killed by : none
Substituted 20 with 21 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 20 with 19 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 13 → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → TIMED_OUT

17.17
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 13 → SURVIVED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

23.23
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

743

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 8 with 9 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 8 with 1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 8 with 0 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 8 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 8 with -8 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 8 with 9 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 8 with 7 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Less than to less or equal → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Less than to greater than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Less than to greater or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Less than to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Less than to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

744

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

746

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 32768 with 32769 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 18002 with 18003 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 32768 with 1 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 18002 with 1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 32768 with 0 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Substituted 18002 with 0 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Substituted 32768 with -1 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Substituted 18002 with -1 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Substituted 32768 with -32768 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Substituted 18002 with -18002 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Substituted 32768 with 32769 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Substituted 18002 with 18003 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Substituted 32768 with 32767 → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
Substituted 18002 with 18001 → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Less or equal to less than → SURVIVED

27.27
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
Less or equal to greater than → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

30.30
Location : sendMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

31.31
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

32.32
Location : sendMTFValues
Killed by : none
Less or equal to equal → SURVIVED

33.33
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

34.34
Location : sendMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

35.35
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 12 → SURVIVED

36.36
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 12 → SURVIVED

37.37
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 12 → SURVIVED

38.38
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 12 → SURVIVED

39.39
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 12 → SURVIVED

40.40
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 12 → SURVIVED

41.41
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 12 → SURVIVED

42.42
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 12 → SURVIVED

747

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

753

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 1 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 0 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -6 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → SURVIVED

755

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less than → KILLED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less or equal → KILLED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to not equal → KILLED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 17 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 17 → KILLED

756

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 4 → KILLED

5.5
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

6.6
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

10.10
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 4 → TIMED_OUT

758

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 12 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 12 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 12 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

26.26
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 12 → SURVIVED

759

1.1
Location : sendMTFValues
Killed by : none
Negated integer local variable number 20 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

760

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

761

1.1
Location : sendMTFValues
Killed by : none
Negated integer local variable number 24 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 5 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

762

1.1
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced equality check with true → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 19 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 17 → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
equal to less than → KILLED

7.7
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 22 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 24 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 22 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 24 → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 22 → KILLED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 24 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 22 → SURVIVED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 24 → KILLED

763

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

2.2
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

764

1.1
Location : sendMTFValues
Killed by : none
Negated integer local variable number 17 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 24 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 24 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 24 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 24 → SURVIVED

765

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 24 → KILLED

2.2
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

5.5
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 5 → TIMED_OUT

766

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 24 → KILLED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 18 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 23 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 23 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 23 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 23 → SURVIVED

768

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 17 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

7.7
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 24 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 24 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 24 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 24 → SURVIVED

769

1.1
Location : sendMTFValues
Killed by : none
Negated integer local variable number 20 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 24 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

6.6
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

10.10
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

773

1.1
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 258 with 259 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 1 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with 0 → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with 0 → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -1 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -1 → KILLED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -6 → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 258 with -258 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 6 with 7 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 258 with 259 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 6 with 5 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 258 with 257 → SURVIVED

776

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 17 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

26.26
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

777

1.1
Location : sendMTFValues
Killed by : none
Substituted 32 with 33 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 32 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 32 with 0 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 32 with -1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 32 with -32 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 32 with 33 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 32 with 31 → SURVIVED

778

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

779

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 13 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 13 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

780

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

7.7
Location : sendMTFValues
Killed by : none
Negated integer local variable number 26 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Less or equal to less than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Less or equal to greater than → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Less or equal to equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 3 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

781

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

783

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

7.7
Location : sendMTFValues
Killed by : none
Negated integer local variable number 25 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 3 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 14 → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 14 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 14 → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 14 → SURVIVED

784

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

787

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 20 with 21 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Negated integer local variable number 26 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 20 with 1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 20 with 0 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 20 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 20 with -20 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 20 with 21 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 20 with 19 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Less or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Less or equal to greater than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Less or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

788

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

790

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Negated integer local variable number 25 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 14 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 14 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 14 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 14 → SURVIVED

791

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

793

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::hbAssignCodes → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 25 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 26 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 14 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 15 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 13 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

13.13
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → TIMED_OUT

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 14 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 15 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 14 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 15 → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 13 → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 14 → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 15 → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

798

1.1
Location : sendMTFValues
Killed by : none
Substituted 16 with 17 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 1 → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 0 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with -16 → KILLED

6.6
Location : sendMTFValues
Killed by : none
Substituted 16 with 17 → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 15 → KILLED

799

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

5.5
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

8.8
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 16 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 16 with 0 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Substituted 16 with -1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 16 with -16 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Substituted 16 with 15 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

23.23
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

27.27
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

28.28
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

800

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

801

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 24 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 16 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 16 with 0 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 16 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 16 with -16 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

17.17
Location : sendMTFValues
Killed by : none
Substituted 16 with 15 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

21.21
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

802

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with division → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 24 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated byte array field → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with division → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

16.16
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with modulus → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

18.18
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with addition → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with subtraction → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

22.22
Location : sendMTFValues
Killed by : none
Substituted 16 with 1 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Substituted 16 with 0 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with -1 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with -16 → KILLED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

27.27
Location : sendMTFValues
Killed by : none
Substituted 16 with 15 → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
equal to less than → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

30.30
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

31.31
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

32.32
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

33.33
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

34.34
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

35.35
Location : sendMTFValues
Killed by : none
Incremented (a++) byte array field → SURVIVED

36.36
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

37.37
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → TIMED_OUT

38.38
Location : sendMTFValues
Killed by : none
Decremented (a--) byte array field → SURVIVED

39.39
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 4 → KILLED

40.40
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

41.41
Location : sendMTFValues
Killed by : none
Incremented (++a) byte array field → SURVIVED

42.42
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

43.43
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

44.44
Location : sendMTFValues
Killed by : none
Decremented (--a) byte array field → SURVIVED

803

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

10.10
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

809

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 16 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 16 with 0 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 16 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 16 with -16 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

17.17
Location : sendMTFValues
Killed by : none
Substituted 16 with 15 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

21.21
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

810

1.1
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

5.5
Location : sendMTFValues
Killed by : none
Negated byte array field → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
equal to less than → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) byte array field → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) byte array field → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) byte array field → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) byte array field → SURVIVED

811

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

813

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

817

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

5.5
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

8.8
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 16 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 16 with 0 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Substituted 16 with -1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 16 with -16 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with 17 → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Substituted 16 with 15 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to greater than → KILLED

23.23
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

27.27
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

28.28
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

818

1.1
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

5.5
Location : sendMTFValues
Killed by : none
Negated byte array field → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
equal to less than → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) byte array field → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) byte array field → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) byte array field → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) byte array field → SURVIVED

819

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Substituted 16 with 17 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 24 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 16 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 16 with 0 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 16 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 16 with -16 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 16 with 17 → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

17.17
Location : sendMTFValues
Killed by : none
Substituted 16 with 15 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

21.21
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

820

1.1
Location : sendMTFValues
Killed by : none
Substituted 16 with 17 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with division → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 24 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated byte array field → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with division → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

16.16
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with modulus → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

18.18
Location : sendMTFValues
Killed by : none
Replaced integer multiplication with addition → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with subtraction → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

22.22
Location : sendMTFValues
Killed by : none
Substituted 16 with 1 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Substituted 16 with 0 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with -1 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 16 with -16 → KILLED

26.26
Location : sendMTFValues
Killed by : none
Substituted 16 with 17 → SURVIVED

27.27
Location : sendMTFValues
Killed by : none
Substituted 16 with 15 → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
equal to less than → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

30.30
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

31.31
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

32.32
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

33.33
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

34.34
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

35.35
Location : sendMTFValues
Killed by : none
Incremented (a++) byte array field → SURVIVED

36.36
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

37.37
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → TIMED_OUT

38.38
Location : sendMTFValues
Killed by : none
Decremented (a--) byte array field → SURVIVED

39.39
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 4 → KILLED

40.40
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

41.41
Location : sendMTFValues
Killed by : none
Incremented (++a) byte array field → SURVIVED

42.42
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

43.43
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

44.44
Location : sendMTFValues
Killed by : none
Decremented (--a) byte array field → SURVIVED

821

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

823

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

833

1.1
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 3 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 3 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 3 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 3 with -3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 3 with 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 17 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 17 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 17 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

834

1.1
Location : sendMTFValues
Killed by : none
Substituted 15 with 16 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 15 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 15 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 15 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 15 with -15 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 15 with 16 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 15 with 14 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 12 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 12 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 12 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 12 → SURVIVED

835

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 12 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 12 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 12 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

26.26
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 12 → SURVIVED

836

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Changed increment from 1 to -1 → TIMED_OUT

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

7.7
Location : sendMTFValues
Killed by : none
Negated integer local variable number 24 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 20 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

20.20
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → TIMED_OUT

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 5 → TIMED_OUT

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

837

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

839

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

845

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 6 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 17 → KILLED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 17 → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 17 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

26.26
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 17 → SURVIVED

846

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

5.5
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

7.7
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

847

1.1
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
Negated integer local variable number 19 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 5 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 5 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 5 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 5 with -5 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 5 with 6 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 5 with 4 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 22 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 22 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 22 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 22 → SURVIVED

848

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer local variable number 3 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 13 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 13 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 13 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

25.25
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 13 → SURVIVED

849

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 19 → TIMED_OUT

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : none
greater or equal to less than → TIMED_OUT

9.9
Location : sendMTFValues
Killed by : none
greater or equal to less or equal → TIMED_OUT

10.10
Location : sendMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
greater or equal to equal → TIMED_OUT

12.12
Location : sendMTFValues
Killed by : none
greater or equal to not equal → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 22 → SURVIVED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 3 → KILLED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 22 → TIMED_OUT

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 22 → SURVIVED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 22 → TIMED_OUT

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

850

1.1
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 2 with 0 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 2 with 0 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 2 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 2 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 2 with -2 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 2 with -2 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

851

1.1
Location : sendMTFValues
Killed by : none
Changed increment from 1 to -1 → TIMED_OUT

2.2
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

853

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → TIMED_OUT

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → TIMED_OUT

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 19 → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

8.8
Location : sendMTFValues
Killed by : none
Less or equal to less than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Less or equal to greater than → TIMED_OUT

10.10
Location : sendMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Less or equal to equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 22 → TIMED_OUT

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 3 → KILLED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 22 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

19.19
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 22 → TIMED_OUT

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 22 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

854

1.1
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 3 with 1 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 2 with 0 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 3 with 0 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 2 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 3 with -1 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 2 with -2 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 3 with -3 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 3 with 4 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Substituted 3 with 2 → SURVIVED

855

1.1
Location : sendMTFValues
Killed by : none
Changed increment from -1 to 1 → TIMED_OUT

2.2
Location : sendMTFValues
Killed by : none
Removed increment -1 → TIMED_OUT

857

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

863

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

864

1.1
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : sendMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

866

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → TIMED_OUT

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → TIMED_OUT

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → TIMED_OUT

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Less than to less or equal → TIMED_OUT

8.8
Location : sendMTFValues
Killed by : none
Less than to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Less than to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Less than to equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Less than to not equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → SURVIVED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

15.15
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer field nMTF → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

19.19
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

869

1.1
Location : sendMTFValues
Killed by : none
Substituted 50 with 51 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → TIMED_OUT

7.7
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → TIMED_OUT

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

11.11
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Replaced integer addition with multiplication → TIMED_OUT

13.13
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Replaced integer addition with division → TIMED_OUT

15.15
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Replaced integer addition with modulus → TIMED_OUT

17.17
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → TIMED_OUT

18.18
Location : sendMTFValues
Killed by : none
Substituted 50 with 1 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Substituted 50 with 0 → TIMED_OUT

20.20
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

21.21
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 50 with -1 → KILLED

22.22
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 50 with -50 → KILLED

24.24
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Substituted 50 with 51 → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

27.27
Location : sendMTFValues
Killed by : none
Substituted 50 with 49 → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

30.30
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

31.31
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

32.32
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

870

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
Negated integer field nMTF → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Less than to less or equal → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Less than to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Less than to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Less than to equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Less than to not equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer field nMTF → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

19.19
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

871

1.1
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field nMTF → KILLED

4.4
Location : sendMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Replaced integer operation by second member → TIMED_OUT

6.6
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with addition → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Replaced integer subtraction with modulus → TIMED_OUT

10.10
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → TIMED_OUT

14.14
Location : sendMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer field nMTF → KILLED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer field nMTF → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer field nMTF → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) integer fieldnMTF → SURVIVED

873

1.1
Location : sendMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

6.6
Location : sendMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

7.7
Location : sendMTFValues
Killed by : none
Negated integer local variable number 9 → SURVIVED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

9.9
Location : sendMTFValues
Killed by : none
Negated integer local variable number 11 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
greater than to less than → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
greater than to less or equal → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
greater than to greater or equal → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
greater than to equal → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
greater than to not equal → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 7 → KILLED

18.18
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

20.20
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 7 → KILLED

21.21
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

23.23
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 7 → KILLED

24.24
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

25.25
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

26.26
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

874

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsW → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Negated integer local variable number 27 → SURVIVED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated short array field → KILLED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 27 → SURVIVED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 20 → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated short array field → KILLED

8.8
Location : sendMTFValues
Killed by : none
Negated integer array field → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Incremented (a++) short array field → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

16.16
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 16 → KILLED

17.17
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) short array field → KILLED

19.19
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 16 → KILLED

20.20
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → TIMED_OUT

21.21
Location : sendMTFValues
Killed by : none
Decremented (a--) short array field → SURVIVED

22.22
Location : sendMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

23.23
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

24.24
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

25.25
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → SURVIVED

26.26
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

27.27
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

28.28
Location : sendMTFValues
Killed by : none
Incremented (++a) short array field → SURVIVED

29.29
Location : sendMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

30.30
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 16 → KILLED

31.31
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

32.32
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) short array field → KILLED

33.33
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 16 → KILLED

34.34
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

35.35
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) short array field → KILLED

36.36
Location : sendMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

878

1.1
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

2.2
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 11 → KILLED

4.4
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

5.5
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

6.6
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

7.7
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

8.8
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

9.9
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

10.10
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

11.11
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : sendMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 0 → KILLED

15.15
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

18.18
Location : sendMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

879

1.1
Location : sendMTFValues
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
Removed increment 1 → SURVIVED

881

1.1
Location : sendMTFValues
Killed by : none
negated conditional → SURVIVED

2.2
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : sendMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : sendMTFValues
Killed by : none
Negated integer local variable number 27 → SURVIVED

5.5
Location : sendMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

6.6
Location : sendMTFValues
Killed by : none
equal to less than → SURVIVED

7.7
Location : sendMTFValues
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : sendMTFValues
Killed by : none
equal to greater than → SURVIVED

9.9
Location : sendMTFValues
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : sendMTFValues
Killed by : none
equal to not equal → SURVIVED

11.11
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 16 → SURVIVED

12.12
Location : sendMTFValues
Killed by : none
Incremented (a++) integer local variable number 12 → SURVIVED

13.13
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 16 → SURVIVED

14.14
Location : sendMTFValues
Killed by : none
Decremented (a--) integer local variable number 12 → SURVIVED

15.15
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 16 → SURVIVED

16.16
Location : sendMTFValues
Killed by : none
Incremented (++a) integer local variable number 12 → SURVIVED

17.17
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 16 → SURVIVED

18.18
Location : sendMTFValues
Killed by : none
Decremented (--a) integer local variable number 12 → SURVIVED

882

1.1
Location : sendMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

887

1.1
Location : moveToFrontCodeAndSend
Killed by : none
Substituted 24 with 25 → SURVIVED

2.2
Location : moveToFrontCodeAndSend
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::bsPutIntVS → SURVIVED

3.3
Location : moveToFrontCodeAndSend
Killed by : none
Negated integer field origPtr → SURVIVED

4.4
Location : moveToFrontCodeAndSend
Killed by : none
Substituted 24 with 1 → SURVIVED

5.5
Location : moveToFrontCodeAndSend
Killed by : none
Substituted 24 with 0 → SURVIVED

6.6
Location : moveToFrontCodeAndSend
Killed by : none
Substituted 24 with -1 → SURVIVED

7.7
Location : moveToFrontCodeAndSend
Killed by : none
Substituted 24 with -24 → SURVIVED

8.8
Location : moveToFrontCodeAndSend
Killed by : none
Substituted 24 with 25 → SURVIVED

9.9
Location : moveToFrontCodeAndSend
Killed by : none
Substituted 24 with 23 → SURVIVED

10.10
Location : moveToFrontCodeAndSend
Killed by : none
Incremented (a++) integer field origPtr → SURVIVED

11.11
Location : moveToFrontCodeAndSend
Killed by : none
Decremented (a--) integer field origPtr → SURVIVED

12.12
Location : moveToFrontCodeAndSend
Killed by : none
Incremented (++a) integer field origPtr → SURVIVED

13.13
Location : moveToFrontCodeAndSend
Killed by : none
Decremented (--a) integer fieldorigPtr → SURVIVED

888

1.1
Location : moveToFrontCodeAndSend
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::generateMTFValues → SURVIVED

889

1.1
Location : moveToFrontCodeAndSend
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::sendMTFValues → SURVIVED

898

1.1
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

3.3
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : simpleSort
Killed by : none
Negated integer local variable number 2 → SURVIVED

5.5
Location : simpleSort
Killed by : none
Negated integer local variable number 1 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

10.10
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

11.11
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

12.12
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

13.13
Location : simpleSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with division → KILLED

15.15
Location : simpleSort
Killed by : none
Replaced integer addition with division → SURVIVED

16.16
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with modulus → KILLED

17.17
Location : simpleSort
Killed by : none
Replaced integer addition with modulus → SURVIVED

18.18
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

20.20
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

21.21
Location : simpleSort
Killed by : none
Substituted 1 with 2 → SURVIVED

22.22
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

23.23
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

24.24
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

25.25
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

26.26
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

27.27
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

28.28
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

29.29
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

30.30
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

899

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : none
Substituted 2 with 3 → SURVIVED

3.3
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

4.4
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : simpleSort
Killed by : none
Negated integer local variable number 4 → SURVIVED

7.7
Location : simpleSort
Killed by : none
Substituted 2 with 1 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Substituted 2 with 0 → SURVIVED

9.9
Location : simpleSort
Killed by : none
Substituted 2 with -1 → SURVIVED

10.10
Location : simpleSort
Killed by : none
Substituted 2 with -2 → SURVIVED

11.11
Location : simpleSort
Killed by : none
Substituted 2 with 3 → SURVIVED

12.12
Location : simpleSort
Killed by : none
Substituted 2 with 1 → SURVIVED

13.13
Location : simpleSort
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : simpleSort
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : simpleSort
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : simpleSort
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : simpleSort
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

19.19
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

20.20
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

21.21
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

903

1.1
Location : simpleSort
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : simpleSort
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : simpleSort
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

904

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

3.3
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

7.7
Location : simpleSort
Killed by : none
Negated integer local variable number 4 → SURVIVED

8.8
Location : simpleSort
Killed by : none
greater or equal to less than → SURVIVED

9.9
Location : simpleSort
Killed by : none
greater or equal to less or equal → SURVIVED

10.10
Location : simpleSort
Killed by : none
greater or equal to greater than → SURVIVED

11.11
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to equal → KILLED

12.12
Location : simpleSort
Killed by : none
greater or equal to not equal → SURVIVED

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

14.14
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

15.15
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

16.16
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 8 → TIMED_OUT

17.17
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

18.18
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

19.19
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

20.20
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

21.21
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

22.22
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

23.23
Location : simpleSort
Killed by : none
Decremented (--a) integer array field → SURVIVED

24.24
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

905

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

907

1.1
Location : simpleSort
Killed by : none
Changed increment from -1 to 1 → SURVIVED

2.2
Location : simpleSort
Killed by : none
Removed increment -1 → SURVIVED

909

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from -1 to 1 → KILLED

3.3
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

4.4
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

6.6
Location : simpleSort
Killed by : none
Removed increment -1 → TIMED_OUT

7.7
Location : simpleSort
Killed by : none
Negated integer local variable number 5 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Less than to less or equal → SURVIVED

9.9
Location : simpleSort
Killed by : none
Less than to greater than → SURVIVED

10.10
Location : simpleSort
Killed by : none
Less than to greater or equal → SURVIVED

11.11
Location : simpleSort
Killed by : none
Less than to equal → SURVIVED

12.12
Location : simpleSort
Killed by : none
Less than to not equal → SURVIVED

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 8 → TIMED_OUT

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 8 → KILLED

15.15
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 8 → TIMED_OUT

16.16
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 8 → SURVIVED

910

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 5 → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 8 → TIMED_OUT

4.4
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 8 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 8 → TIMED_OUT

8.8
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 8 → KILLED

10.10
Location : simpleSort
Killed by : none
Decremented (--a) integer array field → SURVIVED

912

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

2.2
Location : simpleSort
Killed by : none
Negated integer local variable number 1 → SURVIVED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

4.4
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

5.5
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

7.7
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

8.8
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

9.9
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

10.10
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

11.11
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

12.12
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

13.13
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

14.14
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

15.15
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

16.16
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

17.17
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

915

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

3.3
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : simpleSort
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Negated integer local variable number 2 → SURVIVED

7.7
Location : simpleSort
Killed by : none
Less or equal to less than → SURVIVED

8.8
Location : simpleSort
Killed by : none
Less or equal to greater than → SURVIVED

9.9
Location : simpleSort
Killed by : none
Less or equal to greater or equal → SURVIVED

10.10
Location : simpleSort
Killed by : none
Less or equal to equal → SURVIVED

11.11
Location : simpleSort
Killed by : none
Less or equal to not equal → SURVIVED

12.12
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

15.15
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

16.16
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

17.17
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

19.19
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

918

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

6.6
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

919

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

3.3
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

920

1.1
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

5.5
Location : simpleSort
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

6.6
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

7.7
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

8.8
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

9.9
Location : simpleSort
Killed by : none
Negated integer local variable number 6 → SURVIVED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

11.11
Location : simpleSort
Killed by : none
Negated integer local variable number 3 → SURVIVED

12.12
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

13.13
Location : simpleSort
Killed by : none
Negated integer local variable number 3 → SURVIVED

14.14
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

15.15
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

16.16
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

17.17
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

18.18
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

19.19
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

20.20
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

21.21
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

22.22
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

23.23
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

24.24
Location : simpleSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

25.25
Location : simpleSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

26.26
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

27.27
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

28.28
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

29.29
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

30.30
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

31.31
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

32.32
Location : simpleSort
Killed by : none
equal to less than → SURVIVED

33.33
Location : simpleSort
Killed by : none
equal to less or equal → SURVIVED

34.34
Location : simpleSort
Killed by : none
equal to greater than → SURVIVED

35.35
Location : simpleSort
Killed by : none
equal to greater or equal → SURVIVED

36.36
Location : simpleSort
Killed by : none
equal to not equal → SURVIVED

37.37
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

38.38
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

39.39
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

40.40
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

41.41
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

42.42
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

43.43
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

44.44
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

45.45
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

46.46
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

47.47
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 9 → KILLED

48.48
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

49.49
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

50.50
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 6 → KILLED

51.51
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

52.52
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

53.53
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

54.54
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

55.55
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

56.56
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

57.57
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

58.58
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

59.59
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

60.60
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

921

1.1
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

4.4
Location : simpleSort
Killed by : none
Negated integer local variable number 6 → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

6.6
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

8.8
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

9.9
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

10.10
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

11.11
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

12.12
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

15.15
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

16.16
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

18.18
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

19.19
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

20.20
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

21.21
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

22.22
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 6 → KILLED

23.23
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

24.24
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

25.25
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

26.26
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

27.27
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

922

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

4.4
Location : simpleSort
Killed by : none
Replaced integer operation with first member → TIMED_OUT

5.5
Location : simpleSort
Killed by : none
Replaced integer operation by second member → TIMED_OUT

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

7.7
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with multiplication → KILLED

8.8
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → TIMED_OUT

9.9
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

10.10
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

11.11
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

13.13
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

14.14
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

15.15
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 6 → KILLED

16.16
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

923

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

4.4
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

7.7
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

8.8
Location : simpleSort
Killed by : none
Negated integer local variable number 9 → SURVIVED

9.9
Location : simpleSort
Killed by : none
Negated integer local variable number 1 → SURVIVED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

11.11
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

12.12
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

13.13
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

15.15
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

16.16
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

18.18
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

19.19
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

20.20
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

21.21
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

22.22
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with modulus → KILLED

23.23
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

24.24
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

26.26
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 2 → KILLED

27.27
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

28.28
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to less than → KILLED

29.29
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to less or equal → KILLED

30.30
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to greater or equal → KILLED

31.31
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to equal → KILLED

32.32
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to not equal → KILLED

33.33
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

34.34
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

35.35
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

36.36
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

37.37
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

38.38
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

39.39
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

40.40
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

41.41
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

42.42
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

43.43
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

44.44
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

927

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

3.3
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 9 → SURVIVED

7.7
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

9.9
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

928

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

2.2
Location : simpleSort
Killed by : none
Removed increment 1 → SURVIVED

931

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

3.3
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : simpleSort
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Negated integer local variable number 2 → SURVIVED

7.7
Location : simpleSort
Killed by : none
Less or equal to less than → SURVIVED

8.8
Location : simpleSort
Killed by : none
Less or equal to greater than → SURVIVED

9.9
Location : simpleSort
Killed by : none
Less or equal to greater or equal → SURVIVED

10.10
Location : simpleSort
Killed by : none
Less or equal to equal → SURVIVED

11.11
Location : simpleSort
Killed by : none
Less or equal to not equal → SURVIVED

12.12
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

14.14
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

15.15
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

16.16
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

17.17
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

19.19
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

934

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

10.10
Location : simpleSort
Killed by : none
Decremented (--a) integer array field → SURVIVED

935

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

3.3
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

936

1.1
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

5.5
Location : simpleSort
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

6.6
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

7.7
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

8.8
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

9.9
Location : simpleSort
Killed by : none
Negated integer local variable number 6 → SURVIVED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

11.11
Location : simpleSort
Killed by : none
Negated integer local variable number 3 → SURVIVED

12.12
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

13.13
Location : simpleSort
Killed by : none
Negated integer local variable number 3 → SURVIVED

14.14
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

15.15
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

16.16
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

17.17
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

18.18
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

19.19
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

20.20
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

21.21
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

22.22
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

23.23
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

24.24
Location : simpleSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

25.25
Location : simpleSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

26.26
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

27.27
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

28.28
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

29.29
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

30.30
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

31.31
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

32.32
Location : simpleSort
Killed by : none
equal to less than → SURVIVED

33.33
Location : simpleSort
Killed by : none
equal to less or equal → SURVIVED

34.34
Location : simpleSort
Killed by : none
equal to greater than → SURVIVED

35.35
Location : simpleSort
Killed by : none
equal to greater or equal → SURVIVED

36.36
Location : simpleSort
Killed by : none
equal to not equal → SURVIVED

37.37
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

38.38
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

39.39
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

40.40
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

41.41
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

42.42
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

43.43
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

44.44
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

45.45
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

46.46
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

47.47
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 9 → KILLED

48.48
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

49.49
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

50.50
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 6 → KILLED

51.51
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

52.52
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

53.53
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

54.54
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

55.55
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

56.56
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

57.57
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

58.58
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

59.59
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

60.60
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

937

1.1
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

4.4
Location : simpleSort
Killed by : none
Negated integer local variable number 6 → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

6.6
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

8.8
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

9.9
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

10.10
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

11.11
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

12.12
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

15.15
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

16.16
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

17.17
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

18.18
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

19.19
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

20.20
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

21.21
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

22.22
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 6 → KILLED

23.23
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

24.24
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

25.25
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

26.26
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

27.27
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

938

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

4.4
Location : simpleSort
Killed by : none
Replaced integer operation with first member → TIMED_OUT

5.5
Location : simpleSort
Killed by : none
Replaced integer operation by second member → TIMED_OUT

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

7.7
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with multiplication → KILLED

8.8
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → TIMED_OUT

9.9
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

10.10
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

11.11
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

13.13
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

14.14
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

15.15
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 6 → KILLED

16.16
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

939

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

4.4
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

7.7
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

8.8
Location : simpleSort
Killed by : none
Negated integer local variable number 9 → SURVIVED

9.9
Location : simpleSort
Killed by : none
Negated integer local variable number 1 → SURVIVED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

11.11
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

12.12
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

13.13
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

15.15
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

16.16
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

18.18
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

19.19
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

20.20
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

21.21
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

22.22
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with modulus → KILLED

23.23
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

24.24
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

26.26
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with 2 → KILLED

27.27
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

28.28
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to less than → KILLED

29.29
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to less or equal → KILLED

30.30
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to greater or equal → KILLED

31.31
Location : simpleSort
Killed by : none
greater than to equal → SURVIVED

32.32
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to not equal → KILLED

33.33
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

34.34
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

35.35
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

36.36
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

37.37
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

38.38
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

39.39
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

40.40
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

41.41
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

42.42
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

43.43
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

44.44
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

943

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

3.3
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 9 → SURVIVED

7.7
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

9.9
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

944

1.1
Location : simpleSort
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : simpleSort
Killed by : none
Removed increment 1 → SURVIVED

947

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

3.3
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : simpleSort
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Negated integer local variable number 2 → SURVIVED

7.7
Location : simpleSort
Killed by : none
Less or equal to less than → SURVIVED

8.8
Location : simpleSort
Killed by : none
Less or equal to greater than → SURVIVED

9.9
Location : simpleSort
Killed by : none
Less or equal to greater or equal → SURVIVED

10.10
Location : simpleSort
Killed by : none
Less or equal to equal → SURVIVED

11.11
Location : simpleSort
Killed by : none
Less or equal to not equal → SURVIVED

12.12
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

14.14
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

15.15
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

16.16
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

17.17
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

19.19
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

950

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

951

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

3.3
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

952

1.1
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

5.5
Location : simpleSort
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

6.6
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

7.7
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

8.8
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

9.9
Location : simpleSort
Killed by : none
Negated integer local variable number 6 → SURVIVED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

11.11
Location : simpleSort
Killed by : none
Negated integer local variable number 3 → SURVIVED

12.12
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

13.13
Location : simpleSort
Killed by : none
Negated integer local variable number 3 → SURVIVED

14.14
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

15.15
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

16.16
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

17.17
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

18.18
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

19.19
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

20.20
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

21.21
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

22.22
Location : simpleSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

23.23
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

24.24
Location : simpleSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

25.25
Location : simpleSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

26.26
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

27.27
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

28.28
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

29.29
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

30.30
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

31.31
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

32.32
Location : simpleSort
Killed by : none
equal to less than → SURVIVED

33.33
Location : simpleSort
Killed by : none
equal to less or equal → SURVIVED

34.34
Location : simpleSort
Killed by : none
equal to greater than → SURVIVED

35.35
Location : simpleSort
Killed by : none
equal to greater or equal → SURVIVED

36.36
Location : simpleSort
Killed by : none
equal to not equal → SURVIVED

37.37
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

38.38
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

39.39
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

40.40
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

41.41
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

42.42
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

43.43
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

44.44
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

45.45
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

46.46
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

47.47
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 9 → KILLED

48.48
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 3 → KILLED

49.49
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

50.50
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 6 → KILLED

51.51
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

52.52
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

53.53
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

54.54
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

55.55
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

56.56
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

57.57
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

58.58
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

59.59
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

60.60
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

953

1.1
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

4.4
Location : simpleSort
Killed by : none
Negated integer local variable number 6 → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

6.6
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

8.8
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

9.9
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

10.10
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

11.11
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

12.12
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

13.13
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

14.14
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

15.15
Location : simpleSort
Killed by : none
Incremented (a++) integer array field → SURVIVED

16.16
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

18.18
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

19.19
Location : simpleSort
Killed by : none
Decremented (a--) integer array field → SURVIVED

20.20
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

21.21
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

22.22
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

23.23
Location : simpleSort
Killed by : none
Incremented (++a) integer array field → SURVIVED

24.24
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

25.25
Location : simpleSort
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

26.26
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

27.27
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

954

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

4.4
Location : simpleSort
Killed by : none
Replaced integer operation with first member → TIMED_OUT

5.5
Location : simpleSort
Killed by : none
Replaced integer operation by second member → TIMED_OUT

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

7.7
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with multiplication → KILLED

8.8
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → TIMED_OUT

9.9
Location : simpleSort
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

10.10
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

11.11
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

13.13
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

14.14
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

15.15
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

16.16
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

955

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

4.4
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

5.5
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

6.6
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

7.7
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

8.8
Location : simpleSort
Killed by : none
Negated integer local variable number 9 → SURVIVED

9.9
Location : simpleSort
Killed by : none
Negated integer local variable number 1 → SURVIVED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

11.11
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

12.12
Location : simpleSort
Killed by : none
Replaced integer operation with first member → SURVIVED

13.13
Location : simpleSort
Killed by : none
Replaced integer operation by second member → SURVIVED

14.14
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

15.15
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

16.16
Location : simpleSort
Killed by : none
Replaced integer subtraction with addition → SURVIVED

17.17
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with multiplication → KILLED

18.18
Location : simpleSort
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

19.19
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

20.20
Location : simpleSort
Killed by : none
Replaced integer subtraction with division → SURVIVED

21.21
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

22.22
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with modulus → KILLED

23.23
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

24.24
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : simpleSort
Killed by : none
Substituted 1 with -1 → SURVIVED

26.26
Location : simpleSort
Killed by : none
Substituted 1 with 2 → SURVIVED

27.27
Location : simpleSort
Killed by : none
Substituted 1 with 0 → SURVIVED

28.28
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to less than → KILLED

29.29
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to less or equal → KILLED

30.30
Location : simpleSort
Killed by : none
greater than to greater or equal → SURVIVED

31.31
Location : simpleSort
Killed by : none
greater than to equal → SURVIVED

32.32
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater than to not equal → KILLED

33.33
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → TIMED_OUT

34.34
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

35.35
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 6 → KILLED

36.36
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 5 → KILLED

37.37
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

38.38
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 6 → KILLED

39.39
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → TIMED_OUT

40.40
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

41.41
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

42.42
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

43.43
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

44.44
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 6 → KILLED

959

1.1
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

2.2
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

3.3
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

4.4
Location : simpleSort
Killed by : none
Incremented (a++) integer local variable number 9 → SURVIVED

5.5
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

6.6
Location : simpleSort
Killed by : none
Decremented (a--) integer local variable number 9 → SURVIVED

7.7
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

8.8
Location : simpleSort
Killed by : none
Incremented (++a) integer local variable number 9 → SURVIVED

9.9
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

10.10
Location : simpleSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

960

1.1
Location : simpleSort
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : simpleSort
Killed by : none
Removed increment 1 → SURVIVED

962

1.1
Location : simpleSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

3.3
Location : simpleSort
Killed by : none
negated conditional → SURVIVED

4.4
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

5.5
Location : simpleSort
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

6.6
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : simpleSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

8.8
Location : simpleSort
Killed by : none
Negated integer field workDone → SURVIVED

9.9
Location : simpleSort
Killed by : none
Negated integer field workLimit → SURVIVED

10.10
Location : simpleSort
Killed by : none
Less or equal to less than → SURVIVED

11.11
Location : simpleSort
Killed by : none
equal to less than → SURVIVED

12.12
Location : simpleSort
Killed by : none
Less or equal to greater than → SURVIVED

13.13
Location : simpleSort
Killed by : none
equal to less or equal → SURVIVED

14.14
Location : simpleSort
Killed by : none
Less or equal to greater or equal → SURVIVED

15.15
Location : simpleSort
Killed by : none
equal to greater than → SURVIVED

16.16
Location : simpleSort
Killed by : none
Less or equal to equal → SURVIVED

17.17
Location : simpleSort
Killed by : none
equal to greater or equal → SURVIVED

18.18
Location : simpleSort
Killed by : none
Less or equal to not equal → SURVIVED

19.19
Location : simpleSort
Killed by : none
equal to not equal → SURVIVED

20.20
Location : simpleSort
Killed by : none
Incremented (a++) integer field workDone → SURVIVED

21.21
Location : simpleSort
Killed by : none
Incremented (a++) integer field workLimit → SURVIVED

22.22
Location : simpleSort
Killed by : none
Decremented (a--) integer field workDone → SURVIVED

23.23
Location : simpleSort
Killed by : none
Decremented (a--) integer field workLimit → SURVIVED

24.24
Location : simpleSort
Killed by : none
Incremented (++a) integer field workDone → SURVIVED

25.25
Location : simpleSort
Killed by : none
Incremented (++a) integer field workLimit → SURVIVED

26.26
Location : simpleSort
Killed by : none
Decremented (--a) integer fieldworkDone → SURVIVED

27.27
Location : simpleSort
Killed by : none
Decremented (--a) integer fieldworkLimit → SURVIVED

970

1.1
Location : vswap
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : vswap
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : vswap
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : vswap
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : vswap
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

971

1.1
Location : vswap
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : vswap
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : vswap
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : vswap
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : vswap
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

6.6
Location : vswap
Killed by : none
Less or equal to less than → NO_COVERAGE

7.7
Location : vswap
Killed by : none
Less or equal to greater than → NO_COVERAGE

8.8
Location : vswap
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

9.9
Location : vswap
Killed by : none
Less or equal to equal → NO_COVERAGE

10.10
Location : vswap
Killed by : none
Less or equal to not equal → NO_COVERAGE

11.11
Location : vswap
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

12.12
Location : vswap
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

13.13
Location : vswap
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

14.14
Location : vswap
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

972

1.1
Location : vswap
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

2.2
Location : vswap
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : vswap
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

4.4
Location : vswap
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : vswap
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

6.6
Location : vswap
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : vswap
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

8.8
Location : vswap
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : vswap
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

10.10
Location : vswap
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

973

1.1
Location : vswap
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

2.2
Location : vswap
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

3.3
Location : vswap
Killed by : none
Negated integer array field → NO_COVERAGE

4.4
Location : vswap
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

5.5
Location : vswap
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

6.6
Location : vswap
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

7.7
Location : vswap
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

8.8
Location : vswap
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

9.9
Location : vswap
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

10.10
Location : vswap
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

11.11
Location : vswap
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

12.12
Location : vswap
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

13.13
Location : vswap
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

14.14
Location : vswap
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

15.15
Location : vswap
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

974

1.1
Location : vswap
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

2.2
Location : vswap
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

3.3
Location : vswap
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

4.4
Location : vswap
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

5.5
Location : vswap
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

6.6
Location : vswap
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

7.7
Location : vswap
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

8.8
Location : vswap
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

9.9
Location : vswap
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

10.10
Location : vswap
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

975

1.1
Location : vswap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : vswap
Killed by : none
Removed increment 1 → NO_COVERAGE

976

1.1
Location : vswap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : vswap
Killed by : none
Removed increment 1 → NO_COVERAGE

977

1.1
Location : vswap
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : vswap
Killed by : none
Removed increment -1 → NO_COVERAGE

983

1.1
Location : med3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : med3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : med3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : med3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : med3
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

6.6
Location : med3
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

7.7
Location : med3
Killed by : none
Less or equal to less than → NO_COVERAGE

8.8
Location : med3
Killed by : none
Less or equal to greater than → NO_COVERAGE

9.9
Location : med3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

10.10
Location : med3
Killed by : none
Less or equal to equal → NO_COVERAGE

11.11
Location : med3
Killed by : none
Less or equal to not equal → NO_COVERAGE

12.12
Location : med3
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

13.13
Location : med3
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

14.14
Location : med3
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

15.15
Location : med3
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

16.16
Location : med3
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

17.17
Location : med3
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

18.18
Location : med3
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

19.19
Location : med3
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

984

1.1
Location : med3
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

2.2
Location : med3
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

3.3
Location : med3
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

4.4
Location : med3
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

5.5
Location : med3
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

985

1.1
Location : med3
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

2.2
Location : med3
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

3.3
Location : med3
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

4.4
Location : med3
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

5.5
Location : med3
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

986

1.1
Location : med3
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

2.2
Location : med3
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

3.3
Location : med3
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

4.4
Location : med3
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

5.5
Location : med3
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

988

1.1
Location : med3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : med3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : med3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : med3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : med3
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

6.6
Location : med3
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

7.7
Location : med3
Killed by : none
Less or equal to less than → NO_COVERAGE

8.8
Location : med3
Killed by : none
Less or equal to greater than → NO_COVERAGE

9.9
Location : med3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

10.10
Location : med3
Killed by : none
Less or equal to equal → NO_COVERAGE

11.11
Location : med3
Killed by : none
Less or equal to not equal → NO_COVERAGE

12.12
Location : med3
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

13.13
Location : med3
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

14.14
Location : med3
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

15.15
Location : med3
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

16.16
Location : med3
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

17.17
Location : med3
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

18.18
Location : med3
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

19.19
Location : med3
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

989

1.1
Location : med3
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

2.2
Location : med3
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

3.3
Location : med3
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

4.4
Location : med3
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

5.5
Location : med3
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

991

1.1
Location : med3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : med3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : med3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : med3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : med3
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

6.6
Location : med3
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

7.7
Location : med3
Killed by : none
Less or equal to less than → NO_COVERAGE

8.8
Location : med3
Killed by : none
Less or equal to greater than → NO_COVERAGE

9.9
Location : med3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

10.10
Location : med3
Killed by : none
Less or equal to equal → NO_COVERAGE

11.11
Location : med3
Killed by : none
Less or equal to not equal → NO_COVERAGE

12.12
Location : med3
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

13.13
Location : med3
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

14.14
Location : med3
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

15.15
Location : med3
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

16.16
Location : med3
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

17.17
Location : med3
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

18.18
Location : med3
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

19.19
Location : med3
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

992

1.1
Location : med3
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

2.2
Location : med3
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

3.3
Location : med3
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

4.4
Location : med3
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

5.5
Location : med3
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

994

1.1
Location : med3
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE

2.2
Location : med3
Killed by : none
replaced char return with 0 for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::med3 → NO_COVERAGE

3.3
Location : med3
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

4.4
Location : med3
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

5.5
Location : med3
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

6.6
Location : med3
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

7.7
Location : med3
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1007

1.1
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1009

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable ll → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1010

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable hh → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1011

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable dd → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

1012

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1014

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Less or equal to less than → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Less or equal to greater than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Less or equal to equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Less or equal to not equal → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1015

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Substituted 1000 with 1001 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Substituted 1000 with 1 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Substituted 1000 with 0 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Substituted 1000 with -1 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Substituted 1000 with -1000 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Substituted 1000 with 1001 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Substituted 1000 with 999 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Less than to less or equal → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Less than to greater than → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Less than to greater or equal → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Less than to equal → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Less than to not equal → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1016

1.1
Location : qSort3
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

1019

1.1
Location : qSort3
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment -1 → NO_COVERAGE

1020

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer field ll → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer field ll → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer field ll → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer field ll → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer fieldll → NO_COVERAGE

1021

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer field hh → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer field hh → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer field hh → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer field hh → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer fieldhh → NO_COVERAGE

1022

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer field dd → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer field dd → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer field dd → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer field dd → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer fielddd → NO_COVERAGE

1024

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Substituted 20 with 21 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Substituted 10 with 11 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Substituted 20 with 1 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Substituted 10 with 1 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Substituted 20 with 0 → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Substituted 10 with 0 → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Substituted 20 with -1 → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Substituted 10 with -1 → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Substituted 20 with -20 → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Substituted 10 with -10 → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Substituted 20 with 21 → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Substituted 10 with 11 → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Substituted 20 with 19 → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Substituted 10 with 9 → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Less than to less or equal → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Less or equal to less than → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Less than to greater than → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Less or equal to greater than → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Less than to greater or equal → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Less than to equal → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Less or equal to equal → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
Less than to not equal → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
Less or equal to not equal → NO_COVERAGE

43.43
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

44.44
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

45.45
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

46.46
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

47.47
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

48.48
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

49.49
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

50.50
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

51.51
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

52.52
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

53.53
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

54.54
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1025

1.1
Location : qSort3
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::simpleSort → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1026

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Negated integer field workDone → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Negated integer field workLimit → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Less or equal to less than → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
equal to less than → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Less or equal to greater than → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
equal to less or equal → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
equal to greater than → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Less or equal to equal → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
equal to greater or equal → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Less or equal to not equal → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
equal to not equal → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Incremented (a++) integer field workDone → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Incremented (a++) integer field workLimit → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Decremented (a--) integer field workDone → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Decremented (a--) integer field workLimit → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Incremented (++a) integer field workDone → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Incremented (++a) integer field workLimit → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Decremented (--a) integer fieldworkDone → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Decremented (--a) integer fieldworkLimit → NO_COVERAGE

1032

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced Unsigned Shift Right with Shift Left → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::med3 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
replaced call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::med3 with argument → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

43.43
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

44.44
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

45.45
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

46.46
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

47.47
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

48.48
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

49.49
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

50.50
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

51.51
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

52.52
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

53.53
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

54.54
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

55.55
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

56.56
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

57.57
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

58.58
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

59.59
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

60.60
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

61.61
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

62.62
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

63.63
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

64.64
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

65.65
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

66.66
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

67.67
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

68.68
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

69.69
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

70.70
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

71.71
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

72.72
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

73.73
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

74.74
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

75.75
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

76.76
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

77.77
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

78.78
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

79.79
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

80.80
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

81.81
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

82.82
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

83.83
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

84.84
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

85.85
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

86.86
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

87.87
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

88.88
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

89.89
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

90.90
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

91.91
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

92.92
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

93.93
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

94.94
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

95.95
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

96.96
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

97.97
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

98.98
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

99.99
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

100.100
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

101.101
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

102.102
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

103.103
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

104.104
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

105.105
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

106.106
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

107.107
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

108.108
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

109.109
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

110.110
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

111.111
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

112.112
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

113.113
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

114.114
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

115.115
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

116.116
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

117.117
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

118.118
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

119.119
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

120.120
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

121.121
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

122.122
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

123.123
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

124.124
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

125.125
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

126.126
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1036

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

1037

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

1041

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Less or equal to less than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Less or equal to greater than → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Less or equal to equal → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Less or equal to not equal → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1044

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

43.43
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

44.44
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

45.45
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

46.46
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

47.47
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

1045

1.1
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
not equal to less than → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
not equal to less or equal → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
not equal to greater than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
not equal to greater or equal → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
not equal to equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

1046

1.1
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1047

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1048

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1049

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 16 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 16 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 16 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 16 → NO_COVERAGE

1050

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1051

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1054

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Less or equal to less than → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Less or equal to greater than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Less or equal to equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Less or equal to not equal → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

1057

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1060

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Less or equal to less than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Less or equal to greater than → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Less or equal to equal → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Less or equal to not equal → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1063

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

43.43
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

44.44
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

45.45
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

46.46
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

47.47
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

1064

1.1
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
not equal to less than → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
not equal to less or equal → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
not equal to greater than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
not equal to greater or equal → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
not equal to equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

1065

1.1
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1066

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1067

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1068

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 16 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 16 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 16 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 16 → NO_COVERAGE

1069

1.1
Location : qSort3
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment -1 → NO_COVERAGE

1070

1.1
Location : qSort3
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment -1 → NO_COVERAGE

1073

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
greater or equal to less than → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
greater or equal to less or equal → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
greater or equal to greater than → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
greater or equal to equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
greater or equal to not equal → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

1076

1.1
Location : qSort3
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment -1 → NO_COVERAGE

1078

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Less or equal to less than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Less or equal to greater than → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Less or equal to equal → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Less or equal to not equal → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1081

1.1
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1082

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1083

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer array field → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1084

1.1
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 16 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 16 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 16 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 16 → NO_COVERAGE

1085

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1086

1.1
Location : qSort3
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment -1 → NO_COVERAGE

1089

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
greater or equal to less than → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
greater or equal to less or equal → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
greater or equal to greater than → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
greater or equal to equal → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
greater or equal to not equal → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1090

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable ll → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

1091

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable hh → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

1092

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Removed assignment to member variable dd → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1093

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1097

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
greater or equal to less than → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
greater or equal to less or equal → NO_COVERAGE

43.43
Location : qSort3
Killed by : none
greater or equal to greater than → NO_COVERAGE

44.44
Location : qSort3
Killed by : none
greater or equal to equal → NO_COVERAGE

45.45
Location : qSort3
Killed by : none
greater or equal to not equal → NO_COVERAGE

46.46
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

47.47
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

48.48
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

49.49
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

50.50
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

51.51
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

52.52
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

53.53
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

54.54
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

55.55
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

56.56
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

57.57
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

58.58
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

59.59
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

60.60
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

61.61
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

62.62
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

63.63
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

64.64
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

65.65
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

66.66
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

67.67
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

68.68
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

69.69
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

70.70
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

71.71
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

72.72
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

73.73
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

74.74
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

75.75
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

76.76
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

77.77
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1098

1.1
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::vswap → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

1099

1.1
Location : qSort3
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
greater or equal to less than → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
greater or equal to less or equal → NO_COVERAGE

43.43
Location : qSort3
Killed by : none
greater or equal to greater than → NO_COVERAGE

44.44
Location : qSort3
Killed by : none
greater or equal to equal → NO_COVERAGE

45.45
Location : qSort3
Killed by : none
greater or equal to not equal → NO_COVERAGE

46.46
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

47.47
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

48.48
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

49.49
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

50.50
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

51.51
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

52.52
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

53.53
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

54.54
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

55.55
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

56.56
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

57.57
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

58.58
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

59.59
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

60.60
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

61.61
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

62.62
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

63.63
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

64.64
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

65.65
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

66.66
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

67.67
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

68.68
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

69.69
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

70.70
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

71.71
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

72.72
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

73.73
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

74.74
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

75.75
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

76.76
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

77.77
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1100

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::vswap → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 11 → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 11 → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 11 → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 11 → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 11 → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 11 → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 11 → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 11 → NO_COVERAGE

1102

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 5 → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 5 → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 5 → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 5 → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1103

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

25.25
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

26.26
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

27.27
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

30.30
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

31.31
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

32.32
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

33.33
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

34.34
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

35.35
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

36.36
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

37.37
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

38.38
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

39.39
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

40.40
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

41.41
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

42.42
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1105

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable ll → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

1106

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable hh → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

1107

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable dd → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1108

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1110

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Removed assignment to member variable ll → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

1111

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Removed assignment to member variable hh → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 11 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 11 → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 11 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 11 → NO_COVERAGE

1112

1.1
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Removed assignment to member variable dd → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Replaced integer addition with division → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

12.12
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : qSort3
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : qSort3
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

16.16
Location : qSort3
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

17.17
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

18.18
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

19.19
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

20.20
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

21.21
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

22.22
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

23.23
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

24.24
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1113

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1115

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable ll → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 11 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 11 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 11 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 11 → NO_COVERAGE

1116

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable hh → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

1117

1.1
Location : qSort3
Killed by : none
Removed assignment to member variable dd → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

3.3
Location : qSort3
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

4.4
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

5.5
Location : qSort3
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

6.6
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

7.7
Location : qSort3
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

8.8
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

9.9
Location : qSort3
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

10.10
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

11.11
Location : qSort3
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1118

1.1
Location : qSort3
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : qSort3
Killed by : none
Removed increment 1 → NO_COVERAGE

1124

1.1
Location : mainSort
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 256 with 1 → SURVIVED

3.3
Location : mainSort
Killed by : none
Substituted 256 with 0 → SURVIVED

4.4
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -1 → KILLED

5.5
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

6.6
Location : mainSort
Killed by : none
Substituted 256 with 257 → SURVIVED

7.7
Location : mainSort
Killed by : none
Substituted 256 with 255 → SURVIVED

1125

1.1
Location : mainSort
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 256 with 1 → SURVIVED

3.3
Location : mainSort
Killed by : none
Substituted 256 with 0 → SURVIVED

4.4
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -1 → KILLED

5.5
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

6.6
Location : mainSort
Killed by : none
Substituted 256 with 257 → SURVIVED

7.7
Location : mainSort
Killed by : none
Substituted 256 with 255 → SURVIVED

1126

1.1
Location : mainSort
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 256 with 1 → SURVIVED

3.3
Location : mainSort
Killed by : none
Substituted 256 with 0 → SURVIVED

4.4
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -1 → KILLED

5.5
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

6.6
Location : mainSort
Killed by : none
Substituted 256 with 257 → SURVIVED

7.7
Location : mainSort
Killed by : none
Substituted 256 with 255 → SURVIVED

1138

1.1
Location : mainSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : mainSort
Killed by : none
Substituted 20 with 21 → SURVIVED

4.4
Location : mainSort
Killed by : none
negated conditional → SURVIVED

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

8.8
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

9.9
Location : mainSort
Killed by : none
Substituted 20 with 1 → SURVIVED

10.10
Location : mainSort
Killed by : none
Substituted 20 with 0 → SURVIVED

11.11
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

12.12
Location : mainSort
Killed by : none
Substituted 20 with -1 → SURVIVED

13.13
Location : mainSort
Killed by : none
Substituted 20 with -20 → SURVIVED

14.14
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

15.15
Location : mainSort
Killed by : none
Substituted 20 with 21 → SURVIVED

16.16
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

17.17
Location : mainSort
Killed by : none
Substituted 20 with 19 → SURVIVED

18.18
Location : mainSort
Killed by : none
greater or equal to less than → SURVIVED

19.19
Location : mainSort
Killed by : none
greater or equal to less or equal → SURVIVED

20.20
Location : mainSort
Killed by : none
greater or equal to greater than → SURVIVED

21.21
Location : mainSort
Killed by : none
greater or equal to equal → SURVIVED

22.22
Location : mainSort
Killed by : none
greater or equal to not equal → SURVIVED

23.23
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

24.24
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

25.25
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

26.26
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → TIMED_OUT

1139

1.1
Location : mainSort
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

5.5
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

6.6
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : mainSort
Killed by : none
Replaced integer modulus with multiplication → SURVIVED

8.8
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

9.9
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

10.10
Location : mainSort
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

12.12
Location : mainSort
Killed by : none
Negated integer field last → SURVIVED

13.13
Location : mainSort
Killed by : none
Replaced integer operation with first member → SURVIVED

14.14
Location : mainSort
Killed by : none
Replaced integer operation with first member → SURVIVED

15.15
Location : mainSort
Killed by : none
Replaced integer operation with first member → SURVIVED

16.16
Location : mainSort
Killed by : none
Replaced integer operation with first member → SURVIVED

17.17
Location : mainSort
Killed by : none
Replaced integer operation with first member → SURVIVED

18.18
Location : mainSort
Killed by : none
Replaced integer operation by second member → SURVIVED

19.19
Location : mainSort
Killed by : none
Replaced integer operation by second member → SURVIVED

20.20
Location : mainSort
Killed by : none
Replaced integer operation by second member → SURVIVED

21.21
Location : mainSort
Killed by : none
Replaced integer operation by second member → SURVIVED

22.22
Location : mainSort
Killed by : none
Replaced integer operation by second member → SURVIVED

23.23
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

24.24
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

25.25
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

26.26
Location : mainSort
Killed by : none
Replaced integer modulus with multiplication → SURVIVED

27.27
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

28.28
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

29.29
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

30.30
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

31.31
Location : mainSort
Killed by : none
Replaced integer modulus with division → SURVIVED

32.32
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

33.33
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with division → KILLED

34.34
Location : mainSort
Killed by : none
Replaced integer addition with division → SURVIVED

35.35
Location : mainSort
Killed by : none
Replaced integer addition with division → SURVIVED

36.36
Location : mainSort
Killed by : none
Replaced integer modulus with addition → SURVIVED

37.37
Location : mainSort
Killed by : none
Replaced integer addition with division → SURVIVED

38.38
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

39.39
Location : mainSort
Killed by : none
Replaced integer addition with modulus → SURVIVED

40.40
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

41.41
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer modulus with subtraction → KILLED

42.42
Location : mainSort
Killed by : none
Replaced integer addition with modulus → SURVIVED

43.43
Location : mainSort
Killed by : none
Substituted 2 with 1 → SURVIVED

44.44
Location : mainSort
Killed by : none
Substituted 2 with 0 → SURVIVED

45.45
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

46.46
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

47.47
Location : mainSort
Killed by : none
Substituted 2 with -1 → SURVIVED

48.48
Location : mainSort
Killed by : none
Substituted 1 with -1 → SURVIVED

49.49
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

50.50
Location : mainSort
Killed by : none
Substituted 2 with -2 → SURVIVED

51.51
Location : mainSort
Killed by : none
Substituted 1 with -1 → SURVIVED

52.52
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

53.53
Location : mainSort
Killed by : none
Substituted 2 with 3 → SURVIVED

54.54
Location : mainSort
Killed by : none
Substituted 1 with 2 → SURVIVED

55.55
Location : mainSort
Killed by : none
Substituted 1 with 2 → SURVIVED

56.56
Location : mainSort
Killed by : none
Substituted 2 with 1 → SURVIVED

57.57
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

58.58
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

59.59
Location : mainSort
Killed by : none
Incremented (a++) integer field last → SURVIVED

60.60
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

61.61
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

62.62
Location : mainSort
Killed by : none
Incremented (a++) integer field last → SURVIVED

63.63
Location : mainSort
Killed by : none
Decremented (a--) integer field last → SURVIVED

64.64
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

65.65
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

66.66
Location : mainSort
Killed by : none
Decremented (a--) integer field last → SURVIVED

67.67
Location : mainSort
Killed by : none
Incremented (++a) integer field last → SURVIVED

68.68
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

69.69
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

70.70
Location : mainSort
Killed by : none
Incremented (++a) integer field last → SURVIVED

71.71
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

72.72
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → TIMED_OUT

73.73
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → TIMED_OUT

74.74
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1141

1.1
Location : mainSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : mainSort
Killed by : none
Substituted 20 with 21 → SURVIVED

5.5
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

6.6
Location : mainSort
Killed by : none
negated conditional → SURVIVED

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

8.8
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

9.9
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

10.10
Location : mainSort
Killed by : none
Negated integer field last → SURVIVED

11.11
Location : mainSort
Killed by : none
Replaced integer operation with first member → SURVIVED

12.12
Location : mainSort
Killed by : none
Replaced integer operation by second member → SURVIVED

13.13
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

14.14
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

15.15
Location : mainSort
Killed by : none
Replaced integer addition with division → SURVIVED

16.16
Location : mainSort
Killed by : none
Replaced integer addition with modulus → SURVIVED

17.17
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : mainSort
Killed by : none
Substituted 20 with 1 → SURVIVED

19.19
Location : mainSort
Killed by : none
Substituted 20 with 0 → SURVIVED

20.20
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

21.21
Location : mainSort
Killed by : none
Substituted 20 with -1 → SURVIVED

22.22
Location : mainSort
Killed by : none
Substituted 20 with -20 → SURVIVED

23.23
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

24.24
Location : mainSort
Killed by : none
Substituted 20 with 21 → SURVIVED

25.25
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

26.26
Location : mainSort
Killed by : none
Substituted 20 with 19 → SURVIVED

27.27
Location : mainSort
Killed by : none
greater than to less than → SURVIVED

28.28
Location : mainSort
Killed by : none
greater than to less or equal → SURVIVED

29.29
Location : mainSort
Killed by : none
greater than to greater or equal → SURVIVED

30.30
Location : mainSort
Killed by : none
greater than to equal → SURVIVED

31.31
Location : mainSort
Killed by : none
greater than to not equal → SURVIVED

32.32
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

33.33
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer field last → KILLED

34.34
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

35.35
Location : mainSort
Killed by : none
Decremented (a--) integer field last → SURVIVED

36.36
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

37.37
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer field last → KILLED

38.38
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

39.39
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1142

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

8.8
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

9.9
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

10.10
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

1145

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

5.5
Location : mainSort
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : mainSort
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : mainSort
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : mainSort
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : mainSort
Killed by : none
Substituted 1 with -1 → SURVIVED

15.15
Location : mainSort
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

17.17
Location : mainSort
Killed by : none
Substituted 1 with 2 → SURVIVED

18.18
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

19.19
Location : mainSort
Killed by : none
Substituted 1 with 0 → SURVIVED

20.20
Location : mainSort
Killed by : none
Incremented (a++) integer field last → SURVIVED

21.21
Location : mainSort
Killed by : none
Decremented (a--) integer field last → SURVIVED

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer field last → SURVIVED

23.23
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1147

1.1
Location : mainSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 4000 with 4001 → SURVIVED

3.3
Location : mainSort
Killed by : none
negated conditional → SURVIVED

4.4
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : mainSort
Killed by : none
Negated integer field last → SURVIVED

7.7
Location : mainSort
Killed by : none
Substituted 4000 with 1 → SURVIVED

8.8
Location : mainSort
Killed by : none
Substituted 4000 with 0 → SURVIVED

9.9
Location : mainSort
Killed by : none
Substituted 4000 with -1 → SURVIVED

10.10
Location : mainSort
Killed by : none
Substituted 4000 with -4000 → SURVIVED

11.11
Location : mainSort
Killed by : none
Substituted 4000 with 4001 → SURVIVED

12.12
Location : mainSort
Killed by : none
Substituted 4000 with 3999 → SURVIVED

13.13
Location : mainSort
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : mainSort
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : mainSort
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : mainSort
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : mainSort
Killed by : none
greater or equal to not equal → SURVIVED

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer field last → SURVIVED

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer field last → SURVIVED

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer field last → SURVIVED

21.21
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1152

1.1
Location : mainSort
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : mainSort
Killed by : none
negated conditional → SURVIVED

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

8.8
Location : mainSort
Killed by : none
Negated integer field last → SURVIVED

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : mainSort
Killed by : none
greater than to less than → SURVIVED

14.14
Location : mainSort
Killed by : none
greater than to less or equal → SURVIVED

15.15
Location : mainSort
Killed by : none
greater than to greater or equal → SURVIVED

16.16
Location : mainSort
Killed by : none
greater than to equal → SURVIVED

17.17
Location : mainSort
Killed by : none
greater than to not equal → SURVIVED

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

19.19
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer field last → KILLED

20.20
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

21.21
Location : mainSort
Killed by : none
Decremented (a--) integer field last → SURVIVED

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

23.23
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer field last → KILLED

24.24
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

25.25
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1153

1.1
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

2.2
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

5.5
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

7.7
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

9.9
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → TIMED_OUT

1155

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : mainSort
Killed by : none
Removed assignment to member variable firstAttempt → SURVIVED

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

1156

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : mainSort
Killed by : none
Removed assignment to member variable workLimit → SURVIVED

3.3
Location : mainSort
Killed by : none
Removed assignment to member variable workDone → SURVIVED

4.4
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

6.6
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

7.7
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

1157

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : mainSort
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::simpleSort → SURVIVED

4.4
Location : mainSort
Killed by : none
Negated integer field last → SURVIVED

5.5
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

7.7
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

8.8
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : mainSort
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : mainSort
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → SURVIVED

13.13
Location : mainSort
Killed by : none
Incremented (a++) integer field last → SURVIVED

14.14
Location : mainSort
Killed by : none
Decremented (a--) integer field last → SURVIVED

15.15
Location : mainSort
Killed by : none
Incremented (++a) integer field last → SURVIVED

16.16
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1159

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1160

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1161

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1164

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 65536 with 65537 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 65536 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 65536 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 65536 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 65536 with -65536 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 65536 with 65537 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 65536 with 65535 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1165

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1168

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1169

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer field last → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (a++) integer field last → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (a--) integer field last → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (++a) integer field last → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → NO_COVERAGE

1170

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1171

1.1
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

43.43
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1172

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

1175

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 65536 with 65537 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 65536 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 65536 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 65536 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 65536 with -65536 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 65536 with 65537 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 65536 with 65535 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1176

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1179

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

1180

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer field last → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (a++) integer field last → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (a--) integer field last → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (++a) integer field last → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → NO_COVERAGE

1181

1.1
Location : mainSort
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1182

1.1
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

1183

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 9 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 9 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 9 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 9 → NO_COVERAGE

1184

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1185

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1188

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer field last → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Incremented (a++) integer field last → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Decremented (a--) integer field last → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Incremented (++a) integer field last → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → NO_COVERAGE

1189

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1190

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer field last → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Incremented (a++) integer field last → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (a--) integer field last → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Incremented (++a) integer field last → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → NO_COVERAGE

1198

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1199

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1204

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

1206

1.1
Location : mainSort
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced integer multiplication with division → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer multiplication with division → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer multiplication with modulus → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer multiplication with addition → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer multiplication with subtraction → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 3 with 1 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 3 with 0 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 3 with -1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 3 with -3 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted 3 with 2 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1208

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 256 with 257 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 256 with 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted 256 with 0 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 256 with -1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 256 with -256 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 256 with 257 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 256 with 255 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Less or equal to less than → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Less or equal to greater than → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Less or equal to equal → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Less or equal to not equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1210

1.1
Location : mainSort
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer division with multiplication → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer division with multiplication → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer division with modulus → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer division with addition → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer division with subtraction → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 3 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 3 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 3 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 3 with -3 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 3 with 4 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 3 with 2 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1211

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Removed increment 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1212

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1213

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1214

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

43.43
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

44.44
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

45.45
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

46.46
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

47.47
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

48.48
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

49.49
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

50.50
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

51.51
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

52.52
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

53.53
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

54.54
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

55.55
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

56.56
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

57.57
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

58.58
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

59.59
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

60.60
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

61.61
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

62.62
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

63.63
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

64.64
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

65.65
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

66.66
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

67.67
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

68.68
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

69.69
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

70.70
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

71.71
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

72.72
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

73.73
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

74.74
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

75.75
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

76.76
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

77.77
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

78.78
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

79.79
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

80.80
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

81.81
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

82.82
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

83.83
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

84.84
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

85.85
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

86.86
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

87.87
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

88.88
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

89.89
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

90.90
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

91.91
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

92.92
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

93.93
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

94.94
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

95.95
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

96.96
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

97.97
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

98.98
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

99.99
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

100.100
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

101.101
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

102.102
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

103.103
Location : mainSort
Killed by : none
Less or equal to less than → NO_COVERAGE

104.104
Location : mainSort
Killed by : none
Less or equal to greater than → NO_COVERAGE

105.105
Location : mainSort
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

106.106
Location : mainSort
Killed by : none
Less or equal to equal → NO_COVERAGE

107.107
Location : mainSort
Killed by : none
Less or equal to not equal → NO_COVERAGE

108.108
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

109.109
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

110.110
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

111.111
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

112.112
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

113.113
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

114.114
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

115.115
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

116.116
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 11 → NO_COVERAGE

117.117
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

118.118
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 11 → NO_COVERAGE

119.119
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

120.120
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

121.121
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

122.122
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

123.123
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

124.124
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

125.125
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

126.126
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

127.127
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

128.128
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 11 → NO_COVERAGE

129.129
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

130.130
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 11 → NO_COVERAGE

131.131
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

132.132
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

133.133
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

134.134
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

135.135
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

136.136
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

137.137
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

138.138
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

139.139
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

140.140
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 11 → NO_COVERAGE

141.141
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

142.142
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 11 → NO_COVERAGE

143.143
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

144.144
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

145.145
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

146.146
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

147.147
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

148.148
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

149.149
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

150.150
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

151.151
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

152.152
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 11 → NO_COVERAGE

153.153
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

154.154
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 11 → NO_COVERAGE

155.155
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1217

1.1
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1218

1.1
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1219

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1223

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 10 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 11 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 11 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 11 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 11 → NO_COVERAGE

1225

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
not equal to less than → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
not equal to less or equal → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
not equal to greater than → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
not equal to greater or equal → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
not equal to equal → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1228

1.1
Location : mainSort
Killed by : none
Substituted 1000 with 1001 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1000 with 1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1000 with 0 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 1000 with -1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 1000 with -1000 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 1000 with 1001 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 1000 with 999 → NO_COVERAGE

1229

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 1000 with 1001 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 1000 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 1000 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 1000 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 1000 with -1000 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 1000 with 1001 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 1000 with 999 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
greater or equal to less than → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater or equal to less or equal → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater or equal to greater than → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater or equal to equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater or equal to not equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1230

1.1
Location : mainSort
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream$StackElem::<init> → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1236

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Removed increment 1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1241

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1250

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Removed increment 1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1251

1.1
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1252

1.1
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 2097152 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 2097152 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 2097152 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 2097152 with 0 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 2097152 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 2097152 with -1 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 2097152 with -2097152 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 2097152 with -2097152 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 2097152 with 2097151 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 2097152 with 2097151 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
equal to less than → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
equal to less or equal → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
equal to greater than → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
equal to greater or equal → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
equal to not equal → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1253

1.1
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted -2097153 with 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted -2097153 with 0 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted -2097153 with -1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted -2097153 with 2097153 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted -2097153 with -2097154 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1254

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted -2097153 with 1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted -2097153 with 0 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted -2097153 with -1 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Substituted -2097153 with 2097153 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Substituted -2097153 with -2097154 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

43.43
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

44.44
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

45.45
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

46.46
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

47.47
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1255

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Less or equal to less than → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Less or equal to greater than → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Less or equal to equal → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Less or equal to not equal → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1256

1.1
Location : mainSort
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::qSort3 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

1257

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 10 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 10 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 10 → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 10 → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1258

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer field workDone → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer field workLimit → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Less or equal to less than → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
equal to less than → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Less or equal to greater than → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
equal to less or equal → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
equal to greater than → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Less or equal to equal → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
equal to greater or equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Less or equal to not equal → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
equal to not equal → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (a++) integer field workDone → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Incremented (a++) integer field workLimit → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Decremented (a--) integer field workDone → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Decremented (a--) integer field workLimit → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (++a) integer field workDone → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (++a) integer field workLimit → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Decremented (--a) integer fieldworkDone → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer fieldworkLimit → NO_COVERAGE

1262

1.1
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 12 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 2097152 with 1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 2097152 with 0 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 2097152 with -1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted 2097152 with -2097152 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 2097152 with 2097151 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer or with and → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer or by first member → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replace integer or by second member → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 4 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 4 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 4 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 4 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1274

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

1276

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1277

1.1
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted -2097153 with 1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted -2097153 with 0 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted -2097153 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted -2097153 with 2097153 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted -2097153 with -2097154 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1278

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted -2097153 with 1 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted -2097153 with 0 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Substituted -2097153 with -1 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Substituted -2097153 with 2097153 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Substituted -2097153 with -2097154 → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

43.43
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

44.44
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

45.45
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

46.46
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

47.47
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

48.48
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

49.49
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

50.50
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

51.51
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

52.52
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

53.53
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

54.54
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

1279

1.1
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1281

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 65534 with 65535 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 65534 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 65534 with 0 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 65534 with -1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 65534 with -65534 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 65534 with 65535 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 65534 with 65533 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Less or equal to less than → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Less or equal to greater than → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Less or equal to equal → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Less or equal to not equal → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

1282

1.1
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

1285

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

1286

1.1
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 9 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 12 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 12 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 12 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 12 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1287

1.1
Location : mainSort
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

1288

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 16 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 16 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 16 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 16 → NO_COVERAGE

1289

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 20 with 21 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 20 with 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted 20 with 0 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 20 with -1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 20 with -20 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 20 with 21 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 20 with 19 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

1290

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer local variable number 15 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer field last → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 16 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 15 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Incremented (a++) integer field last → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 16 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 15 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (a--) integer field last → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 16 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 15 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Incremented (++a) integer field last → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 16 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 15 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 16 → NO_COVERAGE

1294

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 65535 with 65536 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced Shift Right with Shift Left → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer local variable number 13 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Negated integer local variable number 14 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 65535 with 1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 65535 with 0 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 65535 with -1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 65535 with -65535 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 65535 with 65536 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted 65535 with 65534 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Less or equal to less than → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Less or equal to greater than → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Less or equal to equal → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Less or equal to not equal → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 13 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 14 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 13 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 14 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 13 → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 14 → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 13 → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 14 → NO_COVERAGE

1295

1.1
Location : mainSort
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

1303

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1304

1.1
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted -2097153 with 1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted -2097153 with 0 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted -2097153 with -1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted -2097153 with 2097153 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted -2097153 with -2097154 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

43.43
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

44.44
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

45.45
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

46.46
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1307

1.1
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Substituted -2097153 with 1 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted -2097153 with 0 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted -2097153 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted -2097153 with 2097153 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted -2097153 with -2097154 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1308

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Removed increment 1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted -2097153 with 1 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted -2097153 with 0 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Substituted -2097153 with -1 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Substituted -2097153 with 2097153 → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Substituted -2097153 with -2097152 → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Substituted -2097153 with -2097154 → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Replaced integer and with or → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Replaced integer and by first member → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Replace integer and by second member → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
greater or equal to less than → NO_COVERAGE

43.43
Location : mainSort
Killed by : none
greater or equal to less or equal → NO_COVERAGE

44.44
Location : mainSort
Killed by : none
greater or equal to greater than → NO_COVERAGE

45.45
Location : mainSort
Killed by : none
greater or equal to equal → NO_COVERAGE

46.46
Location : mainSort
Killed by : none
greater or equal to not equal → NO_COVERAGE

47.47
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

48.48
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

49.49
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

50.50
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

51.51
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

52.52
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

53.53
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

54.54
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

55.55
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

56.56
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

57.57
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

58.58
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1309

1.1
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1310

1.1
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Negated byte array field → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
not equal to less than → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
not equal to less or equal → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
not equal to greater than → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
not equal to greater or equal → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
not equal to equal → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Incremented (a++) byte array field → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Decremented (a--) byte array field → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (++a) byte array field → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (--a) byte array field → NO_COVERAGE

1311

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Negated integer field last → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
not equal to less than → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
not equal to less or equal → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
not equal to greater than → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
not equal to greater or equal → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
not equal to equal → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Incremented (a++) integer field last → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Decremented (a--) integer field last → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

42.42
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

43.43
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

44.44
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

45.45
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

46.46
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

47.47
Location : mainSort
Killed by : none
Incremented (++a) integer field last → NO_COVERAGE

48.48
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

49.49
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

50.50
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

51.51
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

52.52
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

53.53
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

54.54
Location : mainSort
Killed by : none
Decremented (--a) integer fieldlast → NO_COVERAGE

55.55
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

56.56
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1312

1.1
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 8 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 8 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 8 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 8 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1316

1.1
Location : mainSort
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
greater than to less than → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
greater than to less or equal → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
greater than to greater or equal → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
greater than to equal → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
greater than to not equal → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1317

1.1
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

2.2
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

3.3
Location : mainSort
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

4.4
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : mainSort
Killed by : none
Replaced bitwise OR with AND → NO_COVERAGE

6.6
Location : mainSort
Killed by : none
Negated integer local variable number 8 → NO_COVERAGE

7.7
Location : mainSort
Killed by : none
Negated integer local variable number 11 → NO_COVERAGE

8.8
Location : mainSort
Killed by : none
Negated integer array field → NO_COVERAGE

9.9
Location : mainSort
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

10.10
Location : mainSort
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

11.11
Location : mainSort
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

12.12
Location : mainSort
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

13.13
Location : mainSort
Killed by : none
Replaced integer addition with division → NO_COVERAGE

14.14
Location : mainSort
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

15.15
Location : mainSort
Killed by : none
Substituted 8 with 1 → NO_COVERAGE

16.16
Location : mainSort
Killed by : none
Substituted 2097152 with 1 → NO_COVERAGE

17.17
Location : mainSort
Killed by : none
Substituted 8 with 0 → NO_COVERAGE

18.18
Location : mainSort
Killed by : none
Substituted 2097152 with 0 → NO_COVERAGE

19.19
Location : mainSort
Killed by : none
Substituted 8 with -1 → NO_COVERAGE

20.20
Location : mainSort
Killed by : none
Substituted 2097152 with -1 → NO_COVERAGE

21.21
Location : mainSort
Killed by : none
Substituted 8 with -8 → NO_COVERAGE

22.22
Location : mainSort
Killed by : none
Substituted 2097152 with -2097152 → NO_COVERAGE

23.23
Location : mainSort
Killed by : none
Substituted 8 with 9 → NO_COVERAGE

24.24
Location : mainSort
Killed by : none
Substituted 2097152 with 2097153 → NO_COVERAGE

25.25
Location : mainSort
Killed by : none
Substituted 8 with 7 → NO_COVERAGE

26.26
Location : mainSort
Killed by : none
Substituted 2097152 with 2097151 → NO_COVERAGE

27.27
Location : mainSort
Killed by : none
Replaced integer or with and → NO_COVERAGE

28.28
Location : mainSort
Killed by : none
Replaced integer or by first member → NO_COVERAGE

29.29
Location : mainSort
Killed by : none
Replace integer or by second member → NO_COVERAGE

30.30
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

31.31
Location : mainSort
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

32.32
Location : mainSort
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

33.33
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

34.34
Location : mainSort
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

35.35
Location : mainSort
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

36.36
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

37.37
Location : mainSort
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

38.38
Location : mainSort
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

39.39
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

40.40
Location : mainSort
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

41.41
Location : mainSort
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1325

1.1
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1326

1.1
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1327

1.1
Location : randomiseBlock
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Substituted 256 with 257 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Substituted 256 with 1 → NO_COVERAGE

11.11
Location : randomiseBlock
Killed by : none
Substituted 256 with 0 → NO_COVERAGE

12.12
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

13.13
Location : randomiseBlock
Killed by : none
Substituted 256 with -1 → NO_COVERAGE

14.14
Location : randomiseBlock
Killed by : none
Substituted 256 with -256 → NO_COVERAGE

15.15
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

16.16
Location : randomiseBlock
Killed by : none
Substituted 256 with 257 → NO_COVERAGE

17.17
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

18.18
Location : randomiseBlock
Killed by : none
Substituted 256 with 255 → NO_COVERAGE

19.19
Location : randomiseBlock
Killed by : none
greater or equal to less than → NO_COVERAGE

20.20
Location : randomiseBlock
Killed by : none
greater or equal to less or equal → NO_COVERAGE

21.21
Location : randomiseBlock
Killed by : none
greater or equal to greater than → NO_COVERAGE

22.22
Location : randomiseBlock
Killed by : none
greater or equal to equal → NO_COVERAGE

23.23
Location : randomiseBlock
Killed by : none
greater or equal to not equal → NO_COVERAGE

24.24
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

25.25
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

26.26
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

27.27
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1328

1.1
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1331

1.1
Location : randomiseBlock
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
Removed increment 1 → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
Negated integer field last → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

11.11
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

12.12
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

13.13
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

14.14
Location : randomiseBlock
Killed by : none
greater than to less than → NO_COVERAGE

15.15
Location : randomiseBlock
Killed by : none
greater than to less or equal → NO_COVERAGE

16.16
Location : randomiseBlock
Killed by : none
greater than to greater or equal → NO_COVERAGE

17.17
Location : randomiseBlock
Killed by : none
greater than to equal → NO_COVERAGE

18.18
Location : randomiseBlock
Killed by : none
greater than to not equal → NO_COVERAGE

19.19
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

20.20
Location : randomiseBlock
Killed by : none
Incremented (a++) integer field last → NO_COVERAGE

21.21
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

22.22
Location : randomiseBlock
Killed by : none
Decremented (a--) integer field last → NO_COVERAGE

23.23
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

24.24
Location : randomiseBlock
Killed by : none
Incremented (++a) integer field last → NO_COVERAGE

25.25
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

26.26
Location : randomiseBlock
Killed by : none
Decremented (--a) integer fieldlast → NO_COVERAGE

1332

1.1
Location : randomiseBlock
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
not equal to less than → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
not equal to less or equal → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
not equal to greater than → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
not equal to greater or equal → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
not equal to equal → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

11.11
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

12.12
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

13.13
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1333

1.1
Location : randomiseBlock
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Negated integer array field → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1334

1.1
Location : randomiseBlock
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Removed increment 1 → NO_COVERAGE

1335

1.1
Location : randomiseBlock
Killed by : none
Substituted 512 with 513 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Negated integer local variable number 2 → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
Substituted 512 with 1 → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
Substituted 512 with 0 → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
Substituted 512 with -1 → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
Substituted 512 with -512 → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Substituted 512 with 513 → NO_COVERAGE

11.11
Location : randomiseBlock
Killed by : none
Substituted 512 with 511 → NO_COVERAGE

12.12
Location : randomiseBlock
Killed by : none
not equal to less than → NO_COVERAGE

13.13
Location : randomiseBlock
Killed by : none
not equal to less or equal → NO_COVERAGE

14.14
Location : randomiseBlock
Killed by : none
not equal to greater than → NO_COVERAGE

15.15
Location : randomiseBlock
Killed by : none
not equal to greater or equal → NO_COVERAGE

16.16
Location : randomiseBlock
Killed by : none
not equal to equal → NO_COVERAGE

17.17
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 3 → NO_COVERAGE

18.18
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 3 → NO_COVERAGE

19.19
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 3 → NO_COVERAGE

20.20
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 3 → NO_COVERAGE

1336

1.1
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1339

1.1
Location : randomiseBlock
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Removed increment -1 → NO_COVERAGE

1340

1.1
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
Replaced XOR with AND → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
removed conditional - replaced equality check with false → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
removed conditional - replaced equality check with true → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

11.11
Location : randomiseBlock
Killed by : none
Negated integer local variable number 1 → NO_COVERAGE

12.12
Location : randomiseBlock
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

13.13
Location : randomiseBlock
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

14.14
Location : randomiseBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

15.15
Location : randomiseBlock
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

16.16
Location : randomiseBlock
Killed by : none
Replaced integer addition with division → NO_COVERAGE

17.17
Location : randomiseBlock
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

18.18
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

19.19
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

21.21
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

22.22
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

23.23
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

24.24
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

25.25
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

26.26
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

27.27
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

28.28
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

29.29
Location : randomiseBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

30.30
Location : randomiseBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

31.31
Location : randomiseBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

32.32
Location : randomiseBlock
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

33.33
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

34.34
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

35.35
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

36.36
Location : randomiseBlock
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

37.37
Location : randomiseBlock
Killed by : none
not equal to less than → NO_COVERAGE

38.38
Location : randomiseBlock
Killed by : none
not equal to less or equal → NO_COVERAGE

39.39
Location : randomiseBlock
Killed by : none
not equal to greater than → NO_COVERAGE

40.40
Location : randomiseBlock
Killed by : none
not equal to greater or equal → NO_COVERAGE

41.41
Location : randomiseBlock
Killed by : none
not equal to equal → NO_COVERAGE

42.42
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

43.43
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 2 → NO_COVERAGE

44.44
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

45.45
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 2 → NO_COVERAGE

46.46
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

47.47
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 2 → NO_COVERAGE

48.48
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

49.49
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 2 → NO_COVERAGE

1342

1.1
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Replaced integer addition with division → NO_COVERAGE

11.11
Location : randomiseBlock
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

12.12
Location : randomiseBlock
Killed by : none
Substituted 255 with 1 → NO_COVERAGE

13.13
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

14.14
Location : randomiseBlock
Killed by : none
Substituted 255 with 0 → NO_COVERAGE

15.15
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : randomiseBlock
Killed by : none
Substituted 255 with -1 → NO_COVERAGE

17.17
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

18.18
Location : randomiseBlock
Killed by : none
Substituted 255 with -255 → NO_COVERAGE

19.19
Location : randomiseBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

20.20
Location : randomiseBlock
Killed by : none
Substituted 255 with 256 → NO_COVERAGE

21.21
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

22.22
Location : randomiseBlock
Killed by : none
Substituted 255 with 254 → NO_COVERAGE

23.23
Location : randomiseBlock
Killed by : none
Replaced integer and with or → NO_COVERAGE

24.24
Location : randomiseBlock
Killed by : none
Replaced integer and by first member → NO_COVERAGE

25.25
Location : randomiseBlock
Killed by : none
Replace integer and by second member → NO_COVERAGE

26.26
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

27.27
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

28.28
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

29.29
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1344

1.1
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : randomiseBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : randomiseBlock
Killed by : none
Negated integer local variable number 3 → NO_COVERAGE

5.5
Location : randomiseBlock
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : randomiseBlock
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : randomiseBlock
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : randomiseBlock
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : randomiseBlock
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : randomiseBlock
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

12.12
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : randomiseBlock
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

17.17
Location : randomiseBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

18.18
Location : randomiseBlock
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

19.19
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : randomiseBlock
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

21.21
Location : randomiseBlock
Killed by : none
Incremented (a++) integer local variable number 1 → NO_COVERAGE

22.22
Location : randomiseBlock
Killed by : none
Decremented (a--) integer local variable number 1 → NO_COVERAGE

23.23
Location : randomiseBlock
Killed by : none
Incremented (++a) integer local variable number 1 → NO_COVERAGE

24.24
Location : randomiseBlock
Killed by : none
Decremented (--a) integer local variable number 1 → NO_COVERAGE

1351

1.1
Location : doReversibleTransformation
Killed by : none
Replaced integer multiplication with division → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable workLimit → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
Negated integer field workFactor → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
Negated integer field last → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : doReversibleTransformation
Killed by : none
Replaced integer multiplication with division → SURVIVED

8.8
Location : doReversibleTransformation
Killed by : none
Replaced integer multiplication with modulus → SURVIVED

9.9
Location : doReversibleTransformation
Killed by : none
Replaced integer multiplication with addition → SURVIVED

10.10
Location : doReversibleTransformation
Killed by : none
Replaced integer multiplication with subtraction → SURVIVED

11.11
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer field workFactor → SURVIVED

12.12
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer field last → SURVIVED

13.13
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer field workFactor → SURVIVED

14.14
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer field last → SURVIVED

15.15
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer field workFactor → SURVIVED

16.16
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer field last → SURVIVED

17.17
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer fieldworkFactor → SURVIVED

18.18
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1352

1.1
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable workDone → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → SURVIVED

1353

1.1
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable blockRandomised → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → SURVIVED

1354

1.1
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable firstAttempt → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
Substituted 1 with -1 → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
Substituted 1 with -1 → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 0 → SURVIVED

1356

1.1
Location : doReversibleTransformation
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::mainSort → SURVIVED

1358

1.1
Location : doReversibleTransformation
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
negated conditional → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
negated conditional → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

7.7
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

8.8
Location : doReversibleTransformation
Killed by : none
Negated integer field workDone → SURVIVED

9.9
Location : doReversibleTransformation
Killed by : none
Negated integer field workLimit → SURVIVED

10.10
Location : doReversibleTransformation
Killed by : none
Less or equal to less than → SURVIVED

11.11
Location : doReversibleTransformation
Killed by : none
equal to less than → SURVIVED

12.12
Location : doReversibleTransformation
Killed by : none
Less or equal to greater than → SURVIVED

13.13
Location : doReversibleTransformation
Killed by : none
equal to less or equal → SURVIVED

14.14
Location : doReversibleTransformation
Killed by : none
Less or equal to greater or equal → SURVIVED

15.15
Location : doReversibleTransformation
Killed by : none
equal to greater than → SURVIVED

16.16
Location : doReversibleTransformation
Killed by : none
Less or equal to equal → SURVIVED

17.17
Location : doReversibleTransformation
Killed by : none
equal to greater or equal → SURVIVED

18.18
Location : doReversibleTransformation
Killed by : none
Less or equal to not equal → SURVIVED

19.19
Location : doReversibleTransformation
Killed by : none
equal to not equal → SURVIVED

20.20
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer field workDone → SURVIVED

21.21
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer field workLimit → SURVIVED

22.22
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer field workDone → SURVIVED

23.23
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer field workLimit → SURVIVED

24.24
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer field workDone → SURVIVED

25.25
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer field workLimit → SURVIVED

26.26
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer fieldworkDone → SURVIVED

27.27
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer fieldworkLimit → SURVIVED

1359

1.1
Location : doReversibleTransformation
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::randomiseBlock → NO_COVERAGE

1360

1.1
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable workDone → NO_COVERAGE

3.3
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable workLimit → NO_COVERAGE

4.4
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

6.6
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

7.7
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1361

1.1
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable blockRandomised → NO_COVERAGE

3.3
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : doReversibleTransformation
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : doReversibleTransformation
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

6.6
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

7.7
Location : doReversibleTransformation
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

1362

1.1
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable firstAttempt → NO_COVERAGE

3.3
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

5.5
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

6.6
Location : doReversibleTransformation
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1363

1.1
Location : doReversibleTransformation
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::mainSort → NO_COVERAGE

1366

1.1
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable origPtr → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 1 → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 0 → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 1 → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 0 → SURVIVED

7.7
Location : doReversibleTransformation
Killed by : none
Substituted -1 with -2 → SURVIVED

1367

1.1
Location : doReversibleTransformation
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
negated conditional → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : doReversibleTransformation
Killed by : none
Negated integer local variable number 1 → SURVIVED

8.8
Location : doReversibleTransformation
Killed by : none
Negated integer field last → SURVIVED

9.9
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : doReversibleTransformation
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : doReversibleTransformation
Killed by : none
greater than to less than → SURVIVED

14.14
Location : doReversibleTransformation
Killed by : none
greater than to less or equal → SURVIVED

15.15
Location : doReversibleTransformation
Killed by : none
greater than to greater or equal → SURVIVED

16.16
Location : doReversibleTransformation
Killed by : none
greater than to equal → SURVIVED

17.17
Location : doReversibleTransformation
Killed by : none
greater than to not equal → SURVIVED

18.18
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

19.19
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer field last → SURVIVED

20.20
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 1 → KILLED

21.21
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer field last → SURVIVED

22.22
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

23.23
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer field last → SURVIVED

24.24
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

25.25
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1368

1.1
Location : doReversibleTransformation
Killed by : none
negated conditional → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

5.5
Location : doReversibleTransformation
Killed by : none
Negated integer array field → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
not equal to less than → SURVIVED

7.7
Location : doReversibleTransformation
Killed by : none
not equal to less or equal → SURVIVED

8.8
Location : doReversibleTransformation
Killed by : none
not equal to greater than → SURVIVED

9.9
Location : doReversibleTransformation
Killed by : none
not equal to greater or equal → SURVIVED

10.10
Location : doReversibleTransformation
Killed by : none
not equal to equal → SURVIVED

11.11
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

12.12
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer array field → SURVIVED

13.13
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer local variable number 1 → TIMED_OUT

14.14
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer array field → KILLED

15.15
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

16.16
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer array field → SURVIVED

17.17
Location : doReversibleTransformation
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 1 → KILLED

18.18
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer array field → SURVIVED

1369

1.1
Location : doReversibleTransformation
Killed by : none
Removed assignment to member variable origPtr → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
Negated integer local variable number 1 → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1374

1.1
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 0 → SURVIVED

2.2
Location : doReversibleTransformation
Killed by : none
negated conditional → SURVIVED

3.3
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

4.4
Location : doReversibleTransformation
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

5.5
Location : doReversibleTransformation
Killed by : none
Negated integer field origPtr → SURVIVED

6.6
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 1 → SURVIVED

7.7
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 0 → SURVIVED

8.8
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 1 → SURVIVED

9.9
Location : doReversibleTransformation
Killed by : none
Substituted -1 with 0 → SURVIVED

10.10
Location : doReversibleTransformation
Killed by : none
Substituted -1 with -2 → SURVIVED

11.11
Location : doReversibleTransformation
Killed by : none
not equal to less than → SURVIVED

12.12
Location : doReversibleTransformation
Killed by : none
not equal to less or equal → SURVIVED

13.13
Location : doReversibleTransformation
Killed by : none
not equal to greater than → SURVIVED

14.14
Location : doReversibleTransformation
Killed by : none
not equal to greater or equal → SURVIVED

15.15
Location : doReversibleTransformation
Killed by : none
not equal to equal → SURVIVED

16.16
Location : doReversibleTransformation
Killed by : none
Incremented (a++) integer field origPtr → SURVIVED

17.17
Location : doReversibleTransformation
Killed by : none
Decremented (a--) integer field origPtr → SURVIVED

18.18
Location : doReversibleTransformation
Killed by : none
Incremented (++a) integer field origPtr → SURVIVED

19.19
Location : doReversibleTransformation
Killed by : none
Decremented (--a) integer fieldorigPtr → SURVIVED

1375

1.1
Location : doReversibleTransformation
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::panic → NO_COVERAGE

1384

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1385

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1386

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1387

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1389

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1390

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1392

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1393

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1394

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1395

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1397

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1398

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1400

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1401

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1402

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1403

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1405

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1406

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1408

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1409

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1410

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1411

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1413

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1414

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1416

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1417

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1418

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1419

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1421

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1422

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1424

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1425

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1426

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1427

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1429

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1430

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1432

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : none
Negated integer field last → SURVIVED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer field last → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer field last → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer field last → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1435

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1436

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with subtraction → KILLED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

12.12
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1437

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1438

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1440

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1441

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1442

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

1443

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : fullGtU
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → NO_COVERAGE

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → NO_COVERAGE

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → NO_COVERAGE

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → NO_COVERAGE

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1445

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1446

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1448

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1449

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1450

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1451

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1453

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1454

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1455

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

1456

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : fullGtU
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → NO_COVERAGE

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → NO_COVERAGE

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → NO_COVERAGE

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → NO_COVERAGE

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1458

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1459

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1461

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1462

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1463

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1464

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1466

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1467

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1468

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

1469

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : fullGtU
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → NO_COVERAGE

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → NO_COVERAGE

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → NO_COVERAGE

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → NO_COVERAGE

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1471

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1472

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1474

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1475

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

1476

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1477

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → RUN_ERROR

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → SURVIVED

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 3 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 4 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → SURVIVED

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → SURVIVED

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → SURVIVED

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → SURVIVED

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → SURVIVED

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → SURVIVED

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 4 → SURVIVED

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 5 → SURVIVED

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 4 → SURVIVED

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 5 → SURVIVED

1479

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1480

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

2.2
Location : fullGtU
Killed by : none
Negated integer array field → SURVIVED

3.3
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : fullGtU
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

6.6
Location : fullGtU
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

8.8
Location : fullGtU
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

10.10
Location : fullGtU
Killed by : none
Decremented (--a) integer array field → SURVIVED

1481

1.1
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

2.2
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → SURVIVED

6.6
Location : fullGtU
Killed by : none
equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

1482

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : fullGtU
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

6.6
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

7.7
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE

8.8
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE

9.9
Location : fullGtU
Killed by : none
Negated integer local variable number 6 → NO_COVERAGE

10.10
Location : fullGtU
Killed by : none
Negated integer local variable number 7 → NO_COVERAGE

11.11
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

15.15
Location : fullGtU
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : fullGtU
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

17.17
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

18.18
Location : fullGtU
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

19.19
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

20.20
Location : fullGtU
Killed by : none
Less or equal to less than → NO_COVERAGE

21.21
Location : fullGtU
Killed by : none
Less or equal to greater than → NO_COVERAGE

22.22
Location : fullGtU
Killed by : none
Less or equal to greater or equal → NO_COVERAGE

23.23
Location : fullGtU
Killed by : none
Less or equal to equal → NO_COVERAGE

24.24
Location : fullGtU
Killed by : none
Less or equal to not equal → NO_COVERAGE

25.25
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

26.26
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

27.27
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

28.28
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

29.29
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

30.30
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

31.31
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

32.32
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1484

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1485

1.1
Location : fullGtU
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment 1 → SURVIVED

1487

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 1 → SURVIVED

6.6
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

7.7
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to less than → KILLED

8.8
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater than → KILLED

9.9
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater or equal → KILLED

10.10
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to equal → KILLED

11.11
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to not equal → KILLED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Incremented (a++) integer field last → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Decremented (a--) integer field last → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer field last → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1488

1.1
Location : fullGtU
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

3.3
Location : fullGtU
Killed by : none
Negated integer field last → SURVIVED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer subtraction with addition → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer subtraction with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer field last → SURVIVED

12.12
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer field last → SURVIVED

14.14
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer field last → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1489

1.1
Location : fullGtU
Killed by : none
Changed increment from -1 to 1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment -1 → SURVIVED

1491

1.1
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
changed conditional boundary → KILLED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 2 → SURVIVED

6.6
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field last → KILLED

7.7
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to less than → KILLED

8.8
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater than → KILLED

9.9
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to greater or equal → KILLED

10.10
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to equal → KILLED

11.11
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Less or equal to not equal → KILLED

12.12
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Incremented (a++) integer field last → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Decremented (a--) integer field last → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Incremented (++a) integer field last → SURVIVED

18.18
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

19.19
Location : fullGtU
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1492

1.1
Location : fullGtU
Killed by : none
Replaced integer subtraction with addition → SURVIVED

2.2
Location : fullGtU
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

3.3
Location : fullGtU
Killed by : none
Negated integer field last → SURVIVED

4.4
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer subtraction with addition → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer subtraction with multiplication → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer subtraction with division → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

10.10
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer field last → SURVIVED

12.12
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 2 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Decremented (a--) integer field last → SURVIVED

14.14
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Incremented (++a) integer field last → SURVIVED

16.16
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 2 → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1493

1.1
Location : fullGtU
Killed by : none
Changed increment from -1 to 1 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment -1 → SURVIVED

1496

1.1
Location : fullGtU
Killed by : none
Changed increment from -4 to 4 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Removed increment -4 → SURVIVED

1497

1.1
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : fullGtU
Killed by : none
Removed assignment to member variable workDone → SURVIVED

4.4
Location : fullGtU
Killed by : none
Negated integer field workDone → SURVIVED

5.5
Location : fullGtU
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : fullGtU
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : fullGtU
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : fullGtU
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : fullGtU
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : fullGtU
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : fullGtU
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : fullGtU
Killed by : none
Incremented (a++) integer field workDone → SURVIVED

17.17
Location : fullGtU
Killed by : none
Decremented (a--) integer field workDone → SURVIVED

18.18
Location : fullGtU
Killed by : none
Incremented (++a) integer field workDone → SURVIVED

19.19
Location : fullGtU
Killed by : none
Decremented (--a) integer fieldworkDone → SURVIVED

1498

1.1
Location : fullGtU
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : fullGtU
Killed by : none
negated conditional → SURVIVED

3.3
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : fullGtU
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : fullGtU
Killed by : none
Negated integer local variable number 5 → SURVIVED

6.6
Location : fullGtU
Killed by : none
greater or equal to less than → SURVIVED

7.7
Location : fullGtU
Killed by : none
greater or equal to less or equal → SURVIVED

8.8
Location : fullGtU
Killed by : none
greater or equal to greater than → SURVIVED

9.9
Location : fullGtU
Killed by : none
greater or equal to equal → SURVIVED

10.10
Location : fullGtU
Killed by : none
greater or equal to not equal → SURVIVED

11.11
Location : fullGtU
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

12.12
Location : fullGtU
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

13.13
Location : fullGtU
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

14.14
Location : fullGtU
Killed by : none
Decremented (--a) integer local variable number 3 → SURVIVED

1500

1.1
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : fullGtU
Killed by : none
replaced return of primitive boolean/byte/short/integer value with (x == 1) ? 0 : x + 1 → NO_COVERAGE

3.3
Location : fullGtU
Killed by : none
replaced boolean return with true for org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::fullGtU → NO_COVERAGE

4.4
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

5.5
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

6.6
Location : fullGtU
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

7.7
Location : fullGtU
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

1509

1.1
Location : <init>
Killed by : none
Substituted 14 with 15 → SURVIVED

2.2
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

5.5
Location : <init>
Killed by : none
Substituted 4 with 5 → SURVIVED

6.6
Location : <init>
Killed by : none
Substituted 2 with 3 → SURVIVED

7.7
Location : <init>
Killed by : none
Substituted 13 with 14 → SURVIVED

8.8
Location : <init>
Killed by : none
Substituted 3 with 4 → SURVIVED

9.9
Location : <init>
Killed by : none
Substituted 40 with 41 → SURVIVED

10.10
Location : <init>
Killed by : none
Substituted 4 with 5 → SURVIVED

11.11
Location : <init>
Killed by : none
Substituted 121 with 122 → SURVIVED

12.12
Location : <init>
Killed by : none
Substituted 5 with 6 → SURVIVED

13.13
Location : <init>
Killed by : none
Substituted 364 with 365 → SURVIVED

14.14
Location : <init>
Killed by : none
Substituted 6 with 7 → SURVIVED

15.15
Location : <init>
Killed by : none
Substituted 1093 with 1094 → SURVIVED

16.16
Location : <init>
Killed by : none
Substituted 7 with 8 → SURVIVED

17.17
Location : <init>
Killed by : none
Substituted 3280 with 3281 → SURVIVED

18.18
Location : <init>
Killed by : none
Substituted 8 with 9 → SURVIVED

19.19
Location : <init>
Killed by : none
Substituted 9841 with 9842 → SURVIVED

20.20
Location : <init>
Killed by : none
Substituted 9 with 10 → SURVIVED

21.21
Location : <init>
Killed by : none
Substituted 29524 with 29525 → SURVIVED

22.22
Location : <init>
Killed by : none
Substituted 10 with 11 → SURVIVED

23.23
Location : <init>
Killed by : none
Substituted 88573 with 88574 → SURVIVED

24.24
Location : <init>
Killed by : none
Substituted 11 with 12 → SURVIVED

25.25
Location : <init>
Killed by : none
Substituted 265720 with 265721 → SURVIVED

26.26
Location : <init>
Killed by : none
Substituted 12 with 13 → SURVIVED

27.27
Location : <init>
Killed by : none
Substituted 797161 with 797162 → SURVIVED

28.28
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 13 with 14 → KILLED

29.29
Location : <init>
Killed by : none
Substituted 2391484 with 2391485 → SURVIVED

30.30
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable incs → KILLED

31.31
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 14 with 1 → KILLED

32.32
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

33.33
Location : <init>
Killed by : none
Substituted 4 with 1 → SURVIVED

34.34
Location : <init>
Killed by : none
Substituted 2 with 1 → SURVIVED

35.35
Location : <init>
Killed by : none
Substituted 13 with 1 → SURVIVED

36.36
Location : <init>
Killed by : none
Substituted 3 with 1 → SURVIVED

37.37
Location : <init>
Killed by : none
Substituted 40 with 1 → SURVIVED

38.38
Location : <init>
Killed by : none
Substituted 4 with 1 → SURVIVED

39.39
Location : <init>
Killed by : none
Substituted 121 with 1 → SURVIVED

40.40
Location : <init>
Killed by : none
Substituted 5 with 1 → SURVIVED

41.41
Location : <init>
Killed by : none
Substituted 364 with 1 → SURVIVED

42.42
Location : <init>
Killed by : none
Substituted 6 with 1 → SURVIVED

43.43
Location : <init>
Killed by : none
Substituted 1093 with 1 → SURVIVED

44.44
Location : <init>
Killed by : none
Substituted 7 with 1 → SURVIVED

45.45
Location : <init>
Killed by : none
Substituted 3280 with 1 → SURVIVED

46.46
Location : <init>
Killed by : none
Substituted 8 with 1 → SURVIVED

47.47
Location : <init>
Killed by : none
Substituted 9841 with 1 → SURVIVED

48.48
Location : <init>
Killed by : none
Substituted 9 with 1 → SURVIVED

49.49
Location : <init>
Killed by : none
Substituted 29524 with 1 → SURVIVED

50.50
Location : <init>
Killed by : none
Substituted 10 with 1 → SURVIVED

51.51
Location : <init>
Killed by : none
Substituted 88573 with 1 → SURVIVED

52.52
Location : <init>
Killed by : none
Substituted 11 with 1 → SURVIVED

53.53
Location : <init>
Killed by : none
Substituted 265720 with 1 → SURVIVED

54.54
Location : <init>
Killed by : none
Substituted 12 with 1 → SURVIVED

55.55
Location : <init>
Killed by : none
Substituted 797161 with 1 → SURVIVED

56.56
Location : <init>
Killed by : none
Substituted 13 with 1 → SURVIVED

57.57
Location : <init>
Killed by : none
Substituted 2391484 with 1 → SURVIVED

58.58
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 14 with 0 → KILLED

59.59
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

60.60
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

61.61
Location : <init>
Killed by : none
Substituted 4 with 0 → SURVIVED

62.62
Location : <init>
Killed by : none
Substituted 2 with 0 → SURVIVED

63.63
Location : <init>
Killed by : none
Substituted 13 with 0 → SURVIVED

64.64
Location : <init>
Killed by : none
Substituted 3 with 0 → SURVIVED

65.65
Location : <init>
Killed by : none
Substituted 40 with 0 → SURVIVED

66.66
Location : <init>
Killed by : none
Substituted 4 with 0 → SURVIVED

67.67
Location : <init>
Killed by : none
Substituted 121 with 0 → SURVIVED

68.68
Location : <init>
Killed by : none
Substituted 5 with 0 → SURVIVED

69.69
Location : <init>
Killed by : none
Substituted 364 with 0 → SURVIVED

70.70
Location : <init>
Killed by : none
Substituted 6 with 0 → SURVIVED

71.71
Location : <init>
Killed by : none
Substituted 1093 with 0 → SURVIVED

72.72
Location : <init>
Killed by : none
Substituted 7 with 0 → SURVIVED

73.73
Location : <init>
Killed by : none
Substituted 3280 with 0 → SURVIVED

74.74
Location : <init>
Killed by : none
Substituted 8 with 0 → SURVIVED

75.75
Location : <init>
Killed by : none
Substituted 9841 with 0 → SURVIVED

76.76
Location : <init>
Killed by : none
Substituted 9 with 0 → SURVIVED

77.77
Location : <init>
Killed by : none
Substituted 29524 with 0 → SURVIVED

78.78
Location : <init>
Killed by : none
Substituted 10 with 0 → SURVIVED

79.79
Location : <init>
Killed by : none
Substituted 88573 with 0 → SURVIVED

80.80
Location : <init>
Killed by : none
Substituted 11 with 0 → SURVIVED

81.81
Location : <init>
Killed by : none
Substituted 265720 with 0 → SURVIVED

82.82
Location : <init>
Killed by : none
Substituted 12 with 0 → SURVIVED

83.83
Location : <init>
Killed by : none
Substituted 797161 with 0 → SURVIVED

84.84
Location : <init>
Killed by : none
Substituted 13 with 0 → SURVIVED

85.85
Location : <init>
Killed by : none
Substituted 2391484 with 0 → SURVIVED

86.86
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 14 with -1 → KILLED

87.87
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

88.88
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

89.89
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

90.90
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 4 with -1 → KILLED

91.91
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with -1 → KILLED

92.92
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 13 with -1 → KILLED

93.93
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 3 with -1 → KILLED

94.94
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 40 with -1 → KILLED

95.95
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 4 with -1 → KILLED

96.96
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 121 with -1 → KILLED

97.97
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 5 with -1 → KILLED

98.98
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 364 with -1 → KILLED

99.99
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -1 → KILLED

100.100
Location : <init>
Killed by : none
Substituted 1093 with -1 → SURVIVED

101.101
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 7 with -1 → KILLED

102.102
Location : <init>
Killed by : none
Substituted 3280 with -1 → SURVIVED

103.103
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 8 with -1 → KILLED

104.104
Location : <init>
Killed by : none
Substituted 9841 with -1 → SURVIVED

105.105
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 9 with -1 → KILLED

106.106
Location : <init>
Killed by : none
Substituted 29524 with -1 → SURVIVED

107.107
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 10 with -1 → KILLED

108.108
Location : <init>
Killed by : none
Substituted 88573 with -1 → SURVIVED

109.109
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 11 with -1 → KILLED

110.110
Location : <init>
Killed by : none
Substituted 265720 with -1 → SURVIVED

111.111
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 12 with -1 → KILLED

112.112
Location : <init>
Killed by : none
Substituted 797161 with -1 → SURVIVED

113.113
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 13 with -1 → KILLED

114.114
Location : <init>
Killed by : none
Substituted 2391484 with -1 → SURVIVED

115.115
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 14 with -14 → KILLED

116.116
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

117.117
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

118.118
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 4 with -4 → KILLED

119.119
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with -2 → KILLED

120.120
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 13 with -13 → KILLED

121.121
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 3 with -3 → KILLED

122.122
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 40 with -40 → KILLED

123.123
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 4 with -4 → KILLED

124.124
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 121 with -121 → KILLED

125.125
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 5 with -5 → KILLED

126.126
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 364 with -364 → KILLED

127.127
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 6 with -6 → KILLED

128.128
Location : <init>
Killed by : none
Substituted 1093 with -1093 → SURVIVED

129.129
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 7 with -7 → KILLED

130.130
Location : <init>
Killed by : none
Substituted 3280 with -3280 → SURVIVED

131.131
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 8 with -8 → KILLED

132.132
Location : <init>
Killed by : none
Substituted 9841 with -9841 → SURVIVED

133.133
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 9 with -9 → KILLED

134.134
Location : <init>
Killed by : none
Substituted 29524 with -29524 → SURVIVED

135.135
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 10 with -10 → KILLED

136.136
Location : <init>
Killed by : none
Substituted 88573 with -88573 → SURVIVED

137.137
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 11 with -11 → KILLED

138.138
Location : <init>
Killed by : none
Substituted 265720 with -265720 → SURVIVED

139.139
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 12 with -12 → KILLED

140.140
Location : <init>
Killed by : none
Substituted 797161 with -797161 → SURVIVED

141.141
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 13 with -13 → KILLED

142.142
Location : <init>
Killed by : none
Substituted 2391484 with -2391484 → SURVIVED

143.143
Location : <init>
Killed by : none
Substituted 14 with 15 → SURVIVED

144.144
Location : <init>
Killed by : none
Substituted 0 with 1 → SURVIVED

145.145
Location : <init>
Killed by : none
Substituted 1 with 2 → SURVIVED

146.146
Location : <init>
Killed by : none
Substituted 1 with 2 → SURVIVED

147.147
Location : <init>
Killed by : none
Substituted 4 with 5 → SURVIVED

148.148
Location : <init>
Killed by : none
Substituted 2 with 3 → SURVIVED

149.149
Location : <init>
Killed by : none
Substituted 13 with 14 → SURVIVED

150.150
Location : <init>
Killed by : none
Substituted 3 with 4 → SURVIVED

151.151
Location : <init>
Killed by : none
Substituted 40 with 41 → SURVIVED

152.152
Location : <init>
Killed by : none
Substituted 4 with 5 → SURVIVED

153.153
Location : <init>
Killed by : none
Substituted 121 with 122 → SURVIVED

154.154
Location : <init>
Killed by : none
Substituted 5 with 6 → SURVIVED

155.155
Location : <init>
Killed by : none
Substituted 364 with 365 → SURVIVED

156.156
Location : <init>
Killed by : none
Substituted 6 with 7 → SURVIVED

157.157
Location : <init>
Killed by : none
Substituted 1093 with 1094 → SURVIVED

158.158
Location : <init>
Killed by : none
Substituted 7 with 8 → SURVIVED

159.159
Location : <init>
Killed by : none
Substituted 3280 with 3281 → SURVIVED

160.160
Location : <init>
Killed by : none
Substituted 8 with 9 → SURVIVED

161.161
Location : <init>
Killed by : none
Substituted 9841 with 9842 → SURVIVED

162.162
Location : <init>
Killed by : none
Substituted 9 with 10 → SURVIVED

163.163
Location : <init>
Killed by : none
Substituted 29524 with 29525 → SURVIVED

164.164
Location : <init>
Killed by : none
Substituted 10 with 11 → SURVIVED

165.165
Location : <init>
Killed by : none
Substituted 88573 with 88574 → SURVIVED

166.166
Location : <init>
Killed by : none
Substituted 11 with 12 → SURVIVED

167.167
Location : <init>
Killed by : none
Substituted 265720 with 265721 → SURVIVED

168.168
Location : <init>
Killed by : none
Substituted 12 with 13 → SURVIVED

169.169
Location : <init>
Killed by : none
Substituted 797161 with 797162 → SURVIVED

170.170
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 13 with 14 → KILLED

171.171
Location : <init>
Killed by : none
Substituted 2391484 with 2391485 → SURVIVED

172.172
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 14 with 13 → KILLED

173.173
Location : <init>
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

174.174
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

175.175
Location : <init>
Killed by : none
Substituted 1 with 0 → SURVIVED

176.176
Location : <init>
Killed by : none
Substituted 4 with 3 → SURVIVED

177.177
Location : <init>
Killed by : none
Substituted 2 with 1 → SURVIVED

178.178
Location : <init>
Killed by : none
Substituted 13 with 12 → SURVIVED

179.179
Location : <init>
Killed by : none
Substituted 3 with 2 → SURVIVED

180.180
Location : <init>
Killed by : none
Substituted 40 with 39 → SURVIVED

181.181
Location : <init>
Killed by : none
Substituted 4 with 3 → SURVIVED

182.182
Location : <init>
Killed by : none
Substituted 121 with 120 → SURVIVED

183.183
Location : <init>
Killed by : none
Substituted 5 with 4 → SURVIVED

184.184
Location : <init>
Killed by : none
Substituted 364 with 363 → SURVIVED

185.185
Location : <init>
Killed by : none
Substituted 6 with 5 → SURVIVED

186.186
Location : <init>
Killed by : none
Substituted 1093 with 1092 → SURVIVED

187.187
Location : <init>
Killed by : none
Substituted 7 with 6 → SURVIVED

188.188
Location : <init>
Killed by : none
Substituted 3280 with 3279 → SURVIVED

189.189
Location : <init>
Killed by : none
Substituted 8 with 7 → SURVIVED

190.190
Location : <init>
Killed by : none
Substituted 9841 with 9840 → SURVIVED

191.191
Location : <init>
Killed by : none
Substituted 9 with 8 → SURVIVED

192.192
Location : <init>
Killed by : none
Substituted 29524 with 29523 → SURVIVED

193.193
Location : <init>
Killed by : none
Substituted 10 with 9 → SURVIVED

194.194
Location : <init>
Killed by : none
Substituted 88573 with 88572 → SURVIVED

195.195
Location : <init>
Killed by : none
Substituted 11 with 10 → SURVIVED

196.196
Location : <init>
Killed by : none
Substituted 265720 with 265719 → SURVIVED

197.197
Location : <init>
Killed by : none
Substituted 12 with 11 → SURVIVED

198.198
Location : <init>
Killed by : none
Substituted 797161 with 797160 → SURVIVED

199.199
Location : <init>
Killed by : none
Substituted 13 with 12 → SURVIVED

200.200
Location : <init>
Killed by : none
Substituted 2391484 with 2391483 → SURVIVED

1514

1.1
Location : allocateCompressStructures
Killed by : none
Substituted 100000 with 100001 → SURVIVED

2.2
Location : allocateCompressStructures
Killed by : none
Replaced integer multiplication with division → SURVIVED

3.3
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field blockSize100k → KILLED

4.4
Location : allocateCompressStructures
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

6.6
Location : allocateCompressStructures
Killed by : none
Replaced integer multiplication with division → SURVIVED

7.7
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with modulus → KILLED

8.8
Location : allocateCompressStructures
Killed by : none
Replaced integer multiplication with addition → SURVIVED

9.9
Location : allocateCompressStructures
Killed by : none
Replaced integer multiplication with subtraction → SURVIVED

10.10
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with 1 → KILLED

11.11
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with 0 → KILLED

12.12
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with -1 → KILLED

13.13
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 100000 with -100000 → KILLED

14.14
Location : allocateCompressStructures
Killed by : none
Substituted 100000 with 100001 → SURVIVED

15.15
Location : allocateCompressStructures
Killed by : none
Substituted 100000 with 99999 → SURVIVED

16.16
Location : allocateCompressStructures
Killed by : none
Incremented (a++) integer field blockSize100k → SURVIVED

17.17
Location : allocateCompressStructures
Killed by : none
Decremented (a--) integer field blockSize100k → SURVIVED

18.18
Location : allocateCompressStructures
Killed by : none
Incremented (++a) integer field blockSize100k → SURVIVED

19.19
Location : allocateCompressStructures
Killed by : none
Decremented (--a) integer fieldblockSize100k → SURVIVED

1515

1.1
Location : allocateCompressStructures
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 21 → SURVIVED

3.3
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with subtraction → SURVIVED

5.5
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable block → KILLED

6.6
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

7.7
Location : allocateCompressStructures
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : allocateCompressStructures
Killed by : none
Replaced integer operation with first member → SURVIVED

9.9
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

10.10
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

11.11
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with subtraction → SURVIVED

12.12
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with subtraction → SURVIVED

13.13
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with multiplication → SURVIVED

14.14
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with multiplication → SURVIVED

15.15
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with division → SURVIVED

16.16
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with division → SURVIVED

17.17
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

18.18
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

19.19
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 1 → SURVIVED

20.20
Location : allocateCompressStructures
Killed by : none
Substituted 1 with 0 → SURVIVED

21.21
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 0 → SURVIVED

22.22
Location : allocateCompressStructures
Killed by : none
Substituted 1 with -1 → SURVIVED

23.23
Location : allocateCompressStructures
Killed by : none
Substituted 20 with -1 → SURVIVED

24.24
Location : allocateCompressStructures
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : allocateCompressStructures
Killed by : none
Substituted 20 with -20 → SURVIVED

26.26
Location : allocateCompressStructures
Killed by : none
Substituted 1 with 2 → SURVIVED

27.27
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 21 → SURVIVED

28.28
Location : allocateCompressStructures
Killed by : none
Substituted 1 with 0 → SURVIVED

29.29
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 19 → SURVIVED

30.30
Location : allocateCompressStructures
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

31.31
Location : allocateCompressStructures
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

32.32
Location : allocateCompressStructures
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

33.33
Location : allocateCompressStructures
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1516

1.1
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 21 → SURVIVED

2.2
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable quadrant → KILLED

4.4
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

5.5
Location : allocateCompressStructures
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

7.7
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : allocateCompressStructures
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer addition with modulus → KILLED

11.11
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 1 → SURVIVED

12.12
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 0 → SURVIVED

13.13
Location : allocateCompressStructures
Killed by : none
Substituted 20 with -1 → SURVIVED

14.14
Location : allocateCompressStructures
Killed by : none
Substituted 20 with -20 → SURVIVED

15.15
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 21 → SURVIVED

16.16
Location : allocateCompressStructures
Killed by : none
Substituted 20 with 19 → SURVIVED

17.17
Location : allocateCompressStructures
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

18.18
Location : allocateCompressStructures
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

19.19
Location : allocateCompressStructures
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

20.20
Location : allocateCompressStructures
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1517

1.1
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable zptr → KILLED

2.2
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

3.3
Location : allocateCompressStructures
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

4.4
Location : allocateCompressStructures
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

5.5
Location : allocateCompressStructures
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

6.6
Location : allocateCompressStructures
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1518

1.1
Location : allocateCompressStructures
Killed by : none
Substituted 65537 with 65538 → SURVIVED

2.2
Location : allocateCompressStructures
Killed by : none
Removed assignment to member variable ftab → SURVIVED

3.3
Location : allocateCompressStructures
Killed by : none
Substituted 65537 with 1 → SURVIVED

4.4
Location : allocateCompressStructures
Killed by : none
Substituted 65537 with 0 → SURVIVED

5.5
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 65537 with -1 → KILLED

6.6
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 65537 with -65537 → KILLED

7.7
Location : allocateCompressStructures
Killed by : none
Substituted 65537 with 65538 → SURVIVED

8.8
Location : allocateCompressStructures
Killed by : none
Substituted 65537 with 65536 → SURVIVED

1520

1.1
Location : allocateCompressStructures
Killed by : none
negated conditional → SURVIVED

2.2
Location : allocateCompressStructures
Killed by : none
negated conditional → SURVIVED

3.3
Location : allocateCompressStructures
Killed by : none
negated conditional → SURVIVED

4.4
Location : allocateCompressStructures
Killed by : none
negated conditional → SURVIVED

5.5
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

6.6
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

7.7
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

8.8
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

9.9
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

10.10
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

11.11
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

12.12
Location : allocateCompressStructures
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

13.13
Location : allocateCompressStructures
Killed by : none
equal to not equal → SURVIVED

14.14
Location : allocateCompressStructures
Killed by : none
equal to not equal → SURVIVED

15.15
Location : allocateCompressStructures
Killed by : none
equal to not equal → SURVIVED

16.16
Location : allocateCompressStructures
Killed by : none
not equal to equal → SURVIVED

1539

1.1
Location : allocateCompressStructures
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with division → KILLED

3.3
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Removed assignment to member variable szptr → KILLED

4.4
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 1 → KILLED

5.5
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation with first member → KILLED

6.6
Location : allocateCompressStructures
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with division → KILLED

8.8
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with modulus → KILLED

9.9
Location : allocateCompressStructures
Killed by : none
Replaced integer multiplication with addition → SURVIVED

10.10
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer multiplication with subtraction → KILLED

11.11
Location : allocateCompressStructures
Killed by : none
Substituted 2 with 1 → SURVIVED

12.12
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with 0 → KILLED

13.13
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with -1 → KILLED

14.14
Location : allocateCompressStructures
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with -2 → KILLED

15.15
Location : allocateCompressStructures
Killed by : none
Substituted 2 with 3 → SURVIVED

16.16
Location : allocateCompressStructures
Killed by : none
Substituted 2 with 1 → SURVIVED

17.17
Location : allocateCompressStructures
Killed by : none
Incremented (a++) integer local variable number 1 → SURVIVED

18.18
Location : allocateCompressStructures
Killed by : none
Decremented (a--) integer local variable number 1 → SURVIVED

19.19
Location : allocateCompressStructures
Killed by : none
Incremented (++a) integer local variable number 1 → SURVIVED

20.20
Location : allocateCompressStructures
Killed by : none
Decremented (--a) integer local variable number 1 → SURVIVED

1543

1.1
Location : generateMTFValues
Killed by : none
Substituted 256 with 257 → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 1 → KILLED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with 0 → KILLED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -1 → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 256 with -256 → KILLED

6.6
Location : generateMTFValues
Killed by : none
Substituted 256 with 257 → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Substituted 256 with 255 → SURVIVED

1551

1.1
Location : generateMTFValues
Killed by : none
removed call to org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream::makeMaps → SURVIVED

1552

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field nInUse → KILLED

4.4
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
Incremented (a++) integer field nInUse → SURVIVED

16.16
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer field nInUse → KILLED

17.17
Location : generateMTFValues
Killed by : none
Incremented (++a) integer field nInUse → SURVIVED

18.18
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer fieldnInUse → KILLED

1554

1.1
Location : generateMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 3 → KILLED

8.8
Location : generateMTFValues
Killed by : none
Negated integer local variable number 2 → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : generateMTFValues
Killed by : none
greater than to less than → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
greater than to less or equal → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
greater than to greater or equal → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
greater than to equal → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
greater than to not equal → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

19.19
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 8 → KILLED

20.20
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

21.21
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 8 → SURVIVED

22.22
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

23.23
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 8 → KILLED

24.24
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

25.25
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 8 → SURVIVED

1555

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 3 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

9.9
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

10.10
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

1558

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

1559

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

1560

1.1
Location : generateMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
negated conditional → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with false → KILLED

6.6
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 3 → KILLED

8.8
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer field nInUse → KILLED

9.9
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

10.10
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

11.11
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

13.13
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less than → KILLED

14.14
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to less or equal → KILLED

15.15
Location : generateMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
greater or equal to not equal → KILLED

18.18
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 2 → KILLED

19.19
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer field nInUse → KILLED

20.20
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

21.21
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer field nInUse → KILLED

22.22
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 2 → KILLED

23.23
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer field nInUse → KILLED

24.24
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

25.25
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer fieldnInUse → KILLED

1561

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 3 → KILLED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 3 → KILLED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 2 → KILLED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 2 → KILLED

5.5
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

6.6
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

7.7
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 2 → KILLED

8.8
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 2 → KILLED

9.9
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

10.10
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 2 → TIMED_OUT

1565

1.1
Location : generateMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
negated conditional → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

6.6
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced comparison check with true → KILLED

7.7
Location : generateMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

8.8
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 3 → KILLED

9.9
Location : generateMTFValues
Killed by : none
Negated integer field last → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

11.11
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

12.12
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

13.13
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : generateMTFValues
Killed by : none
greater than to less than → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
greater than to less or equal → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
greater than to greater or equal → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
greater than to equal → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
greater than to not equal → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

20.20
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer field last → KILLED

21.21
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 2 → KILLED

22.22
Location : generateMTFValues
Killed by : none
Decremented (a--) integer field last → SURVIVED

23.23
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

24.24
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer field last → KILLED

25.25
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

26.26
Location : generateMTFValues
Killed by : none
Decremented (--a) integer fieldlast → SURVIVED

1568

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 3 → KILLED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer array field → KILLED

3.3
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 2 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 2 → TIMED_OUT

6.6
Location : generateMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 2 → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

9.9
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 2 → KILLED

10.10
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer array field → KILLED

1570

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with 1 → KILLED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with 1 → KILLED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with 1 → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

1571

1.1
Location : generateMTFValues
Killed by : none
Negated integer local variable number 7 → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 3 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 3 → KILLED

1572

1.1
Location : generateMTFValues
Killed by : none
negated conditional → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
removed conditional - replaced equality check with true → KILLED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 6 → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

6.6
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
equal to less than → KILLED

7.7
Location : generateMTFValues
Killed by : none
equal to less or equal → SURVIVED

8.8
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
equal to greater than → KILLED

9.9
Location : generateMTFValues
Killed by : none
equal to greater or equal → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
equal to not equal → SURVIVED

11.11
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 9 → KILLED

12.12
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 4 → KILLED

13.13
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 9 → KILLED

14.14
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (a--) integer local variable number 4 → KILLED

15.15
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 9 → KILLED

16.16
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 4 → KILLED

17.17
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 9 → KILLED

18.18
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

1573

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → TIMED_OUT

1574

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

2.2
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 4 → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

1575

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 3 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → TIMED_OUT

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

5.5
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 3 → TIMED_OUT

1576

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 9 → KILLED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (a++) integer local variable number 3 → KILLED

4.4
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 5 → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → TIMED_OUT

6.6
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 5 → SURVIVED

7.7
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 3 → KILLED

8.8
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 5 → KILLED

9.9
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 3 → TIMED_OUT

10.10
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 5 → KILLED

1578

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with 1 → KILLED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 8 → KILLED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with 1 → KILLED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with 1 → KILLED

6.6
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

7.7
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 4 → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 4 → SURVIVED

9.9
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Incremented (++a) integer local variable number 4 → KILLED

10.10
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 4 → KILLED

1580

1.1
Location : generateMTFValues
Killed by : none
negated conditional → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
removed conditional - replaced equality check with false → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
removed conditional - replaced equality check with true → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Negated integer local variable number 7 → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
not equal to less than → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
not equal to less or equal → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
not equal to greater than → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
not equal to greater or equal → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
not equal to equal → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 3 → SURVIVED

1581

1.1
Location : generateMTFValues
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → SURVIVED

1583

1.1
Location : generateMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Less or equal to less than → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Less or equal to greater than → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Less or equal to equal → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

1584

1.1
Location : generateMTFValues
Killed by : none
Changed increment from -1 to 1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Removed increment -1 → SURVIVED

1586

1.1
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Replaced integer modulus with multiplication → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
RemoveSwitch 0 mutation → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
RemoveSwitch 1 mutation → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Changed switch default to be first case → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Replaced integer modulus with multiplication → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Replaced integer modulus with division → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Replaced integer modulus with addition → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Replaced integer modulus with subtraction → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

14.14
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with 0 → KILLED

15.15
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
Substituted 2 with -2 → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

21.21
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

22.22
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

1588

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

5.5
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

6.6
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

7.7
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

1589

1.1
Location : generateMTFValues
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → SURVIVED

1590

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Negated integer array field → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

14.14
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

18.18
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 0 with -1 → KILLED

19.19
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

21.21
Location : generateMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

22.22
Location : generateMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

23.23
Location : generateMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

1593

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

6.6
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

1594

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → SURVIVED

1595

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Negated integer array field → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

13.13
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

14.14
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

15.15
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 1 with -1 → KILLED

16.16
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

21.21
Location : generateMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

22.22
Location : generateMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

23.23
Location : generateMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

24.24
Location : generateMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

1598

1.1
Location : generateMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
negated conditional → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with false → TIMED_OUT

5.5
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Substituted 2 with 0 → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → TIMED_OUT

10.10
Location : generateMTFValues
Killed by : none
Substituted 2 with -2 → TIMED_OUT

11.11
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
greater or equal to less than → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
greater or equal to less or equal → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
greater or equal to greater than → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
greater or equal to equal → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
greater or equal to not equal → TIMED_OUT

18.18
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

21.21
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

1601

1.1
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

4.4
Location : generateMTFValues
Killed by : none
Replaced integer division with multiplication → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

9.9
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer operation by second member → KILLED

10.10
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with addition → KILLED

11.11
Location : generateMTFValues
Killed by : none
Replaced integer division with multiplication → SURVIVED

12.12
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer subtraction with multiplication → KILLED

13.13
Location : generateMTFValues
Killed by : none
Replaced integer division with modulus → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
Replaced integer subtraction with division → SURVIVED

15.15
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Replaced integer division with addition → KILLED

16.16
Location : generateMTFValues
Killed by : none
Replaced integer subtraction with modulus → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
Replaced integer division with subtraction → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Substituted 2 with 0 → SURVIVED

21.21
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with 0 → KILLED

22.22
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → SURVIVED

23.23
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → SURVIVED

24.24
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Substituted 2 with -2 → KILLED

25.25
Location : generateMTFValues
Killed by : none
Substituted 2 with -2 → SURVIVED

26.26
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

27.27
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → SURVIVED

28.28
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

29.29
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → SURVIVED

30.30
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

31.31
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

32.32
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

33.33
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

1603

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → SURVIVED

1605

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

4.4
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

5.5
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

21.21
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

22.22
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Decremented (--a) integer local variable number 7 → KILLED

23.23
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 3 → SURVIVED

1606

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Changed increment from 1 to -1 → KILLED

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → SURVIVED

1607

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

5.5
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 7 → KILLED

6.6
Location : generateMTFValues
Killed by : none
Negated integer array field → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

21.21
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

22.22
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

23.23
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

24.24
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

25.25
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

26.26
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

27.27
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

28.28
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

29.29
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 3 → SURVIVED

30.30
Location : generateMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

31.31
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 3 → SURVIVED

32.32
Location : generateMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

33.33
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 3 → SURVIVED

34.34
Location : generateMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

35.35
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 3 → SURVIVED

36.36
Location : generateMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

1611

1.1
Location : generateMTFValues
Killed by : none
changed conditional boundary → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
negated conditional → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with false → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with true → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Less or equal to less than → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Less or equal to greater than → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Less or equal to greater or equal → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Less or equal to equal → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Less or equal to not equal → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → SURVIVED

1612

1.1
Location : generateMTFValues
Killed by : none
Changed increment from -1 to 1 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Removed increment -1 → NO_COVERAGE

1614

1.1
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

3.3
Location : generateMTFValues
Killed by : none
RemoveSwitch 0 mutation → NO_COVERAGE

4.4
Location : generateMTFValues
Killed by : none
RemoveSwitch 1 mutation → NO_COVERAGE

5.5
Location : generateMTFValues
Killed by : none
Changed switch default to be first case → NO_COVERAGE

6.6
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

7.7
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

8.8
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

9.9
Location : generateMTFValues
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

10.10
Location : generateMTFValues
Killed by : none
Replaced integer modulus with division → NO_COVERAGE

11.11
Location : generateMTFValues
Killed by : none
Replaced integer modulus with addition → NO_COVERAGE

12.12
Location : generateMTFValues
Killed by : none
Replaced integer modulus with subtraction → NO_COVERAGE

13.13
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

14.14
Location : generateMTFValues
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

15.15
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

16.16
Location : generateMTFValues
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

17.17
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

18.18
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

19.19
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

20.20
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

21.21
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

22.22
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1616

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

3.3
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

4.4
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

5.5
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

6.6
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

7.7
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

8.8
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

9.9
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

10.10
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1617

1.1
Location : generateMTFValues
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → NO_COVERAGE

1618

1.1
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : generateMTFValues
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

12.12
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

14.14
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : generateMTFValues
Killed by : none
Substituted 0 with 1 → NO_COVERAGE

17.17
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

18.18
Location : generateMTFValues
Killed by : none
Substituted 0 with -1 → NO_COVERAGE

19.19
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : generateMTFValues
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

21.21
Location : generateMTFValues
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

22.22
Location : generateMTFValues
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

23.23
Location : generateMTFValues
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1621

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Negated integer local variable number 4 → NO_COVERAGE

3.3
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

4.4
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

5.5
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

6.6
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

7.7
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

8.8
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → NO_COVERAGE

9.9
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → NO_COVERAGE

10.10
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → NO_COVERAGE

11.11
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → NO_COVERAGE

1622

1.1
Location : generateMTFValues
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → NO_COVERAGE

1623

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

3.3
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : generateMTFValues
Killed by : none
Negated integer array field → NO_COVERAGE

5.5
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

7.7
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → NO_COVERAGE

9.9
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → NO_COVERAGE

10.10
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → NO_COVERAGE

11.11
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

12.12
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

13.13
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

14.14
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

15.15
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

16.16
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → NO_COVERAGE

17.17
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

18.18
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → NO_COVERAGE

19.19
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

20.20
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → NO_COVERAGE

21.21
Location : generateMTFValues
Killed by : none
Incremented (a++) integer array field → NO_COVERAGE

22.22
Location : generateMTFValues
Killed by : none
Decremented (a--) integer array field → NO_COVERAGE

23.23
Location : generateMTFValues
Killed by : none
Incremented (++a) integer array field → NO_COVERAGE

24.24
Location : generateMTFValues
Killed by : none
Decremented (--a) integer array field → NO_COVERAGE

1626

1.1
Location : generateMTFValues
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

3.3
Location : generateMTFValues
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with false → NO_COVERAGE

5.5
Location : generateMTFValues
Killed by : none
removed conditional - replaced comparison check with true → NO_COVERAGE

6.6
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

7.7
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

8.8
Location : generateMTFValues
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

9.9
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

10.10
Location : generateMTFValues
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

11.11
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

12.12
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

13.13
Location : generateMTFValues
Killed by : none
greater or equal to less than → NO_COVERAGE

14.14
Location : generateMTFValues
Killed by : none
greater or equal to less or equal → NO_COVERAGE

15.15
Location : generateMTFValues
Killed by : none
greater or equal to greater than → NO_COVERAGE

16.16
Location : generateMTFValues
Killed by : none
greater or equal to equal → NO_COVERAGE

17.17
Location : generateMTFValues
Killed by : none
greater or equal to not equal → NO_COVERAGE

18.18
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

19.19
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

20.20
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

21.21
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1629

1.1
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

2.2
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

3.3
Location : generateMTFValues
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : generateMTFValues
Killed by : none
Replaced integer division with multiplication → NO_COVERAGE

5.5
Location : generateMTFValues
Killed by : none
Negated integer local variable number 5 → NO_COVERAGE

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

7.7
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → NO_COVERAGE

8.8
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

9.9
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → NO_COVERAGE

10.10
Location : generateMTFValues
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

11.11
Location : generateMTFValues
Killed by : none
Replaced integer division with multiplication → NO_COVERAGE

12.12
Location : generateMTFValues
Killed by : none
Replaced integer subtraction with multiplication → NO_COVERAGE

13.13
Location : generateMTFValues
Killed by : none
Replaced integer division with modulus → NO_COVERAGE

14.14
Location : generateMTFValues
Killed by : none
Replaced integer subtraction with division → NO_COVERAGE

15.15
Location : generateMTFValues
Killed by : none
Replaced integer division with addition → NO_COVERAGE

16.16
Location : generateMTFValues
Killed by : none
Replaced integer subtraction with modulus → NO_COVERAGE

17.17
Location : generateMTFValues
Killed by : none
Replaced integer division with subtraction → NO_COVERAGE

18.18
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

19.19
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

20.20
Location : generateMTFValues
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

21.21
Location : generateMTFValues
Killed by : none
Substituted 2 with 0 → NO_COVERAGE

22.22
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

23.23
Location : generateMTFValues
Killed by : none
Substituted 2 with -1 → NO_COVERAGE

24.24
Location : generateMTFValues
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

25.25
Location : generateMTFValues
Killed by : none
Substituted 2 with -2 → NO_COVERAGE

26.26
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

27.27
Location : generateMTFValues
Killed by : none
Substituted 2 with 3 → NO_COVERAGE

28.28
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

29.29
Location : generateMTFValues
Killed by : none
Substituted 2 with 1 → NO_COVERAGE

30.30
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 6 → NO_COVERAGE

31.31
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 6 → NO_COVERAGE

32.32
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 6 → NO_COVERAGE

33.33
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 6 → NO_COVERAGE

1633

1.1
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 4 → KILLED

2.2
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

3.3
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 8 → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 8 → SURVIVED

1634

1.1
Location : generateMTFValues
Killed by : none
Changed increment from 1 to -1 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Removed increment 1 → SURVIVED

1635

1.1
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

3.3
Location : generateMTFValues
Killed by : org.apache.commons.compress.compressors.BZip2TestCase.testBzipCreation(org.apache.commons.compress.compressors.BZip2TestCase)
Negated integer local variable number 2 → KILLED

4.4
Location : generateMTFValues
Killed by : none
Negated integer array field → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Replaced integer operation with first member → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Replaced integer operation by second member → SURVIVED

7.7
Location : generateMTFValues
Killed by : none
Replaced integer addition with subtraction → SURVIVED

8.8
Location : generateMTFValues
Killed by : none
Replaced integer addition with multiplication → SURVIVED

9.9
Location : generateMTFValues
Killed by : none
Replaced integer addition with division → SURVIVED

10.10
Location : generateMTFValues
Killed by : none
Replaced integer addition with modulus → SURVIVED

11.11
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

12.12
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

13.13
Location : generateMTFValues
Killed by : none
Substituted 1 with -1 → SURVIVED

14.14
Location : generateMTFValues
Killed by : none
Substituted 1 with 2 → SURVIVED

15.15
Location : generateMTFValues
Killed by : none
Substituted 1 with 0 → SURVIVED

16.16
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 8 → SURVIVED

17.17
Location : generateMTFValues
Killed by : none
Incremented (a++) integer array field → SURVIVED

18.18
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 8 → SURVIVED

19.19
Location : generateMTFValues
Killed by : none
Decremented (a--) integer array field → SURVIVED

20.20
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 8 → SURVIVED

21.21
Location : generateMTFValues
Killed by : none
Incremented (++a) integer array field → SURVIVED

22.22
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 8 → SURVIVED

23.23
Location : generateMTFValues
Killed by : none
Decremented (--a) integer array field → SURVIVED

1637

1.1
Location : generateMTFValues
Killed by : none
Removed assignment to member variable nMTF → SURVIVED

2.2
Location : generateMTFValues
Killed by : none
Negated integer local variable number 4 → SURVIVED

3.3
Location : generateMTFValues
Killed by : none
Incremented (a++) integer local variable number 7 → SURVIVED

4.4
Location : generateMTFValues
Killed by : none
Decremented (a--) integer local variable number 7 → SURVIVED

5.5
Location : generateMTFValues
Killed by : none
Incremented (++a) integer local variable number 7 → SURVIVED

6.6
Location : generateMTFValues
Killed by : none
Decremented (--a) integer local variable number 7 → SURVIVED

Active mutators

Tests examined


Report generated by PIT 1.7.3